-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.25 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 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
47
48
49
50
51
52
{
"name": "adadex",
"version": "0.1.0",
"description": "Web-first command surface for running multiple coding agents in parallel",
"license": "MIT",
"type": "module",
"packageManager": "pnpm@10.4.1",
"pnpm": {
"onlyBuiltDependencies": [
"@biomejs/biome",
"esbuild",
"node-pty"
],
"patchedDependencies": {
"node-pty@1.1.0": "patches/node-pty@1.1.0.patch"
}
},
"engines": {
"node": ">=22.0.0"
},
"bin": {
"adadex": "./bin/adadex"
},
"files": [
"bin",
"dist",
"README.md"
],
"scripts": {
"start": "pnpm dev",
"dev": "node scripts/dev.mjs",
"build": "pnpm --filter @adadex/web build && pnpm --filter @adadex/web exec vite build --config vite.api.bundle.config.mts && node scripts/build-package.mjs",
"smoke:public-install": "node scripts/smoke-public-install.mjs",
"test": "pnpm -r test",
"lint": "biome check .",
"format": "biome format --write .",
"prepare": "husky"
},
"dependencies": {
"node-pty": "^1.1.0",
"ws": "^8.21.0"
},
"devDependencies": {
"@biomejs/biome": "^2.4.15",
"@types/node": "^26.0.0",
"husky": "^9.1.7",
"knip": "^6.15.0",
"lint-staged": "^17.0.5",
"typescript": "^6.0.3",
"vitest": "^4.1.7"
}
}