-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 894 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 894 Bytes
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
{
"name": "hufu",
"version": "1.0.0",
"type": "module",
"description": "虎符系统 - Key 分片安全传输",
"bin": {
"poufu": "./packages/poufu/dist/cli.cjs"
},
"workspaces": [
"packages/*"
],
"scripts": {
"build": "npm run build --workspaces",
"test": "npm run test --workspaces",
"test:e2e": "cd tests && tsc && cd .. && node --test tests/dist/**/*.test.js",
"server": "npm run dev --workspace=hufu-server",
"cli": "npm run dev --workspace=poufu",
"prepare": "npm run build --workspace=poufu && husky"
},
"devDependencies": {
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"prettier": "^3.8.2",
"typescript": "^5.0.0"
},
"dependencies": {
"clipboardy": "^4.0.0"
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"prettier --write"
],
"*.{json,md,yml,yaml}": [
"prettier --write"
]
}
}