-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
58 lines (58 loc) · 1.41 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
{
"name": "@soybeanjs/color-palette",
"type": "module",
"version": "0.1.1",
"packageManager": "[email protected]",
"repository": {
"url": "https://github.com/soybeanjs/color-palette"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": ["dist"],
"scripts": {
"build": "tsup",
"cleanup": "soy cleanup",
"commit": "soy git-commit",
"dev": "tsup --watch",
"lint": "eslint . --fix",
"prepare": "simple-git-hooks",
"publish-pkg": "pnpm publish --access public",
"release": "soy release",
"typecheck": "tsc --noEmit --skipLibCheck",
"update-pkg": "soy ncu"
},
"dependencies": {
"colord": "2.9.3"
},
"devDependencies": {
"@soybeanjs/cli": "1.1.1",
"@soybeanjs/eslint-config": "1.4.3",
"@types/cli-progress": "3.11.6",
"@types/node": "22.10.2",
"eslint": "9.16.0",
"lint-staged": "15.2.11",
"simple-git-hooks": "2.11.1",
"tsup": "8.3.5",
"tsx": "4.19.2",
"typescript": "5.7.2"
},
"simple-git-hooks": {
"commit-msg": "pnpm soy git-commit-verify",
"pre-commit": "pnpm typecheck && pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}