-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.62 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.62 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
{
"name": "do-code",
"version": "0.3.9",
"private": true,
"type": "module",
"bin": {
"do-code": "scripts/cli-entry.js",
"do-code-dev": "scripts/dev-cli-entry.js"
},
"files": [
"dist/src",
"scripts/cli-entry.js",
"scripts/postinstall.mjs",
"README.md"
],
"engines": {
"node": "^20.19.0 || >=22.12.0"
},
"scripts": {
"postinstall": "node scripts/postinstall.mjs",
"build": "npm run build:agent",
"build:agent": "node scripts/build-agent.mjs",
"check:file-size": "node scripts/check-file-size.js",
"check:hardcoded": "node scripts/check-hardcoded-values.js",
"check:architecture": "node scripts/check-architecture.js",
"dev": "tsx src/cli.ts",
"test:ui": "tsx --test test/chat-ui-*.test.ts",
"verify:fast": "npm run typecheck && npm run check:file-size",
"verify:local": "npm run typecheck && npm test",
"activate:local": "npm run build:agent && npm run verify:local",
"release:pack": "npm run build:agent && mkdir -p .do-code/releases && npm pack ./packages/cli --pack-destination .do-code/releases",
"release": "node scripts/release.mjs",
"test": "tsx --test test/*.test.ts",
"typecheck": "tsc -p tsconfig.json --noEmit"
},
"devDependencies": {
"@types/node": "^20.17.0",
"@xterm/headless": "^5.5.0",
"ink-testing-library": "^4.0.0",
"tsx": "^4.19.0",
"typescript": "^5.7.0"
},
"dependencies": {
"@tree201/markdansi": "^0.4.3",
"cli-highlight": "^2.1.11",
"ink": "npm:@jrichman/ink@6.6.9",
"marked": "^18.0.9",
"string-width": "^7.2.0"
},
"optionalDependencies": {
"node-pty": "^1.1.0"
}
}