-
Notifications
You must be signed in to change notification settings - Fork 162
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 839 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 839 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
38
{
"name": "ai-devkit",
"version": "0.21.1",
"private": true,
"description": "A CLI toolkit for AI-assisted software development with phase templates and environment setup",
"scripts": {
"nx": "nx",
"prepare": "husky",
"build": "nx run-many -t build",
"lint": "nx run-many -t lint",
"test": "nx run-many -t test",
"test:watch": "nx run-many -t test --watch",
"test:coverage": "nx run-many -t test --coverage",
"test:e2e": "jest --config e2e/jest.config.js"
},
"workspaces": [
"apps/*",
"packages/*"
],
"keywords": [
"ai",
"development",
"cli",
"templates",
"cursor",
"claude"
],
"author": "",
"license": "MIT",
"devDependencies": {
"@nx/js": "^22.4.0",
"husky": "^9.1.7",
"nx": "^22.4.0"
},
"engines": {
"node": ">=20.20.0"
}
}