-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.23 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
{
"name": "secai",
"version": "0.0.3",
"author": "jungzl",
"license": "MIT",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"bin": {
"secai": "bin/secai.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jungzl/secai.git"
},
"bugs": "https://github.com/jungzl/secai.git",
"homepage": "https://github.com/jungzl/secai#readme",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"files": [
"dist",
"bin",
"colors.json"
],
"keywords": [
"color",
"traditional",
"chinese",
"iroiro",
"secai"
],
"scripts": {
"dev": "tsx src/cli.ts",
"build": "tsx scripts/build.ts && tsup src/cli.ts src/index.ts --format cjs,esm --dts --minify",
"prepare": "pnpm run build",
"release": "pnpm publish --no-git-checks"
},
"dependencies": {
"chalk": "^5.0.1"
},
"devDependencies": {
"@jungzl/eslint-config-ts": "^0.0.8",
"@types/chroma-js": "^2.1.3",
"@types/color-namer": "^1.3.0",
"@types/node": "^18.0.0",
"chroma-js": "^2.4.2",
"color-namer": "^1.4.0",
"eslint": "^8.18.0",
"tsup": "^7.0.0",
"tsx": "^3.4.3",
"typescript": "^5.0.0"
}
}