-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.53 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "@spacingbat3/kolor",
"version": "4.0.0",
"description": "A simple module to colorize text for terminals.",
"type": "module",
"main": "dist/lib.js",
"types": "types/lib.d.ts",
"scripts": {
"prelint": "tsc -b",
"lint": "eslint --cache --cache-location .cache/eslint.json --config .config/eslint.mjs",
"prepack": "tsc",
"build": "tsc",
"preexample": "tsc -b example",
"example": "node example/dist/index.js",
"pretest": "tsc -b test",
"test": "node --test --experimental-strip-types",
"docs": "typedoc --options config/typedoc.mjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SpacingBat3/kolor.git"
},
"keywords": [
"colors",
"chalk",
"colorize",
"console",
"terminal",
"library",
"module"
],
"author": {
"name": "SpacingBat3",
"email": "[email protected]",
"url": "https://github.com/SpacingBat3"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/SpacingBat3/kolor/issues"
},
"homepage": "https://github.com/SpacingBat3/kolor#readme",
"devDependencies": {
"@tsconfig/strictest": "^2.0.0",
"@types/node": "^20.6.2",
"eslint": "^9.17.0",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-import-x": "^4.6.1",
"typedoc": "^0.27.6",
"typescript": "^5.0.3",
"typescript-eslint": "^8.19.0"
},
"imports": {
"#lib": {
"types": "./types/lib.d.ts",
"default": "./dist/lib.js"
}
},
"publishConfig": {
"access": "public"
}
}