-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.47 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.47 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "agent-p",
"version": "0.0.1",
"description": "Multi-Agent Orchestration & Context Engineering toolkit with a custom Agentic workflow for AI related tasks",
"type": "module",
"main": "dist/src/index.js",
"bin": {
"agent-p": "./bin/cli.js"
},
"scripts": {
"build": "pnpm run build:check && pnpm run build:compile && pnpm run build:assets",
"build:check": "pnpm run lint && pnpm run docs:check",
"build:compile": "tsc",
"build:assets": "tsx bin/copy-skills-manifest.ts",
"docs:check": "tsx bin/docs-verify.ts",
"docs:api": "typedoc",
"docs:generate": "pnpm docs:api",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest --coverage",
"test:e2e": "vitest run --config vitest.e2e.config.ts",
"test:contracts": "vitest run test/unit/cli.test.ts test/unit/cli-hooks.test.ts",
"verify:phase9": "pnpm typecheck && pnpm typecheck:test && pnpm lint && pnpm test && pnpm test:contracts && pnpm test:e2e && pnpm test:coverage && pnpm build && pnpm docs:check",
"lint": "eslint src/ test/",
"typecheck": "tsc --noEmit",
"typecheck:test": "tsc --project tsconfig.test.json --noEmit",
"db:migrate": "tsx src/db/migrate.ts",
"db:generate": "drizzle-kit generate",
"preinstall": "npx only-allow pnpm",
"postinstall": "pnpm build:sqlite",
"build:sqlite": "tsx bin/build-sqlite.ts"
},
"dependencies": {
"@libsql/client": "^0.15.0",
"better-sqlite3": "^12.6.2",
"chalk": "^5.6.2",
"commander": "^14.0.3",
"debug": "^4.4.0",
"dotenv": "^17.3.1",
"drizzle-orm": "^0.40.0",
"glob": "^13.0.6",
"lru-cache": "^11.2.6",
"sql.js": "^1.12.0",
"web-tree-sitter": "^0.26.6",
"yaml": "^2.8.2",
"zod": "^4.3.6"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/better-sqlite3": "^7.6.13",
"@types/debug": "^4.1.12",
"@types/eslint": "^9.6.1",
"@types/node": "^22.15.21",
"@vitest/coverage-v8": "^4.0.18",
"drizzle-kit": "^0.31.9",
"eslint": "^10.0.2",
"globals": "^17.4.0",
"prettier": "^3.8.1",
"tsx": "^4.19.0",
"typedoc": "^0.28.17",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.1",
"vitest": "^4.0.18"
},
"engines": {
"node": ">=24"
},
"packageManager": "[email protected]",
"pnpm": {
"overrides": {
"better-sqlite3": "^12.6.2",
"esbuild": "^0.25.0",
"flatted": ">=3.4.2"
},
"onlyBuiltDependencies": [
"better-sqlite3",
"esbuild"
]
}
}