-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.25 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.25 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
{
"name": "acode-ai-agent",
"version": "0.1.0",
"description": "Coding agent for Acode",
"license": "MIT",
"author": "Acode Foundation",
"repository": "https://github.com/Acode-Foundation/Acode",
"type": "module",
"main": "dist/main.js",
"scripts": {
"dev": "node esbuild.config.mjs --serve",
"build": "tsc --noEmit && node esbuild.config.mjs",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"lint": "oxlint",
"lint:fix": "oxlint --fix",
"fmt": "oxfmt",
"fmt:check": "oxfmt --check"
},
"dependencies": {
"@codemirror/merge": "^6.12.2",
"@codemirror/state": "^6.7.1",
"@codemirror/view": "^6.43.9",
"@earendil-works/pi-agent-core": "0.86.1",
"@earendil-works/pi-ai": "0.86.1",
"acode-plugin-types": "^1.12.9",
"dompurify": "^3.4.13",
"lucide-preact": "^1.32.0",
"marked": "^18.0.10",
"motion": "^13.1.0",
"picomatch": "^4.0.5",
"preact": "^10.27.2",
"zod": "^4.4.3"
},
"devDependencies": {
"@types/dompurify": "^3.0.5",
"@types/picomatch": "^4.0.3",
"esbuild": "^0.28.1",
"jszip": "^3.10.1",
"oxfmt": "^0.67.0",
"oxlint": "^1.82.0",
"typescript": "^5.9.3",
"vitest": "^4.1.11"
},
"browserslist": "cover 100%,not android < 5"
}