-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.5 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
62
{
"name": "@spacingbat3/kolor",
"version": "4.0.0",
"description": "A simple module to colorize your Node.js console.",
"main": "dist/index.cjs",
"module": "dist/index.js",
"type": "module",
"exports": {
".": {
"import": {
"types": "./types/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./types/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"scripts": {
"lint": "tsc && eslint --cache --cache-location .cache/eslint.json --ext ts .",
"test": "tsc -b tests && node tests/dist/colors.js",
"prepack": "tsc",
"build": "tsc",
"example": "tsc -b example && node example/dist/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SpacingBat3/kolor.git"
},
"keywords": [
"colors",
"chalk",
"colorize",
"console",
"terminal",
"library",
"module"
],
"author": {
"name": "SpacingBat3",
"email": "git@spacingbat3.anonaddy.com",
"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",
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.7.0",
"eslint": "^8.6.0",
"typescript": "^5.0.3"
},
"publishConfig": {
"access": "public"
},
"types": "./types"
}