-
Notifications
You must be signed in to change notification settings - Fork 250
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.06 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.06 KB
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
39
40
41
42
43
44
{
"name": "ai-devkit",
"version": "0.62.1",
"private": true,
"description": "Make AI coding agents follow a repeatable engineering workflow with memory, verification, skills, and multi-agent setup",
"keywords": [
"ai",
"claude",
"cli",
"cursor",
"development",
"templates"
],
"license": "MIT",
"author": "",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"nx": "nx",
"prepare": "husky",
"build": "nx run-many -t build",
"lint": "nx run-many -t lint",
"fmt": "oxfmt packages",
"fmt:check": "oxfmt --check packages",
"test": "nx run-many -t test",
"test:watch": "nx run-many -t test --watch",
"test:coverage": "nx run-many -t test --coverage",
"test:e2e": "vitest run --config e2e/vitest.config.ts",
"build:codex-plugin": "node scripts/build-codex-plugin.mjs"
},
"devDependencies": {
"@nx/js": "^22.4.0",
"husky": "^9.1.7",
"nx": "^22.4.0",
"oxfmt": "^0.67.0",
"oxlint": "^1.82.0",
"vitest": "^4.1.8"
},
"engines": {
"node": ">=20.20.0"
}
}