-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
20 lines (20 loc) · 747 Bytes
/
package.json
File metadata and controls
20 lines (20 loc) · 747 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
"name": "ai-product-os",
"version": "1.0.0",
"private": true,
"description": "AI Product Operating System — command-driven development framework with specialized AI agents",
"scripts": {
"prepare": "husky",
"check:secrets": "node scripts/lib/check-secrets.js",
"check:file-sizes": "node scripts/lib/check-file-sizes.js",
"check:env-files": "node scripts/lib/check-env-files.js",
"check:function-sizes": "node scripts/lib/check-function-sizes.js",
"validate:docs": "node scripts/lib/validate-docs.js",
"check:all": "npm run check:secrets && npm run check:file-sizes && npm run check:env-files"
},
"devDependencies": {
"husky": "^9.1.0",
"lint-staged": "^15.2.0",
"prettier": "^3.4.0"
}
}