-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 868 Bytes
/
package.json
File metadata and controls
24 lines (24 loc) · 868 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
{
"name": "limps-monorepo",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"build": "npm run build --workspaces",
"test": "npm run test --workspaces --if-present",
"test:coverage": "npm run test:coverage --workspaces --if-present",
"lint": "npm run lint --workspaces --if-present",
"format": "npm run format --workspaces --if-present",
"format:check": "npm run format:check --workspaces --if-present",
"type-check": "npm run type-check --workspaces --if-present",
"validate": "npm run format:check && npm run lint && npm run type-check && npm run build && npm test",
"ci": "npm run validate",
"prepare": "husky",
"skills:manifest": "node scripts/generate-skills-manifest.js",
"assistants:sync": "node scripts/sync-assistant-parity.js"
},
"devDependencies": {
"husky": "^9.1.7"
}
}