-
-
Notifications
You must be signed in to change notification settings - Fork 114
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 768 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 768 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
{
"name": "complexity",
"private": true,
"license": "MPL-2.0",
"scripts": {
"build": "turbo build",
"check-deps": "manypkg check",
"check-types": "turbo check-types",
"dev": "turbo dev",
"fix-deps": "manypkg fix",
"fmt": "turbo fmt",
"lint": "turbo lint",
"lint-staged": "lint-staged",
"prepare": "husky",
"test": "turbo test"
},
"devDependencies": {
"@manypkg/cli": "^0.25.1",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"prettier": "catalog:lint",
"turbo": "^2.9.6",
"typescript": "catalog:types"
},
"packageManager": "pnpm@10.25.0",
"engines": {
"node": "^22.12.0"
},
"manypkg": {
"defaultBranch": "nxt",
"ignoredRules": [],
"workspaceProtocol": "require"
}
}