-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
44 lines (44 loc) · 1.16 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
{
"name": "kuai",
"version": "0.0.1",
"description": "A framework for building dApps on Nervos",
"repository": "https://github.com/ckb-js/kuai.git",
"license": "MIT",
"private": true,
"engines": {
"node": ">=18"
},
"workspaces": [
"packages/*",
"packages/samples/*"
],
"scripts": {
"build": "npm run build:lib",
"build:lib": "lerna run build",
"test": "lerna run test",
"lint": "eslint 'packages/*/{src,__tests__}/**/*.ts'",
"prepare": "husky install",
"format:check": "prettier -cu packages/**/src/*",
"format:write": "prettier -wu packages/**/src/*",
"bump-version": "npx lerna version --no-git-tag-version --no-push --sign-git-commit --yes",
"publish:all": "npx lerna publish --no-private from-package --yes"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "6.20.0",
"@typescript-eslint/parser": "6.20.0",
"eslint": "8.56.0",
"husky": "9.0.10",
"jest": "29.7.0",
"lerna": "8.0.2",
"lint-staged": "15.2.1",
"prettier": "3.2.5",
"ts-jest": "29.1.2",
"typescript": "5.3.3"
},
"lint-staged": {
"**/*": [
"prettier -wu",
"npx eslint"
]
}
}