-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.81 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.81 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
{
"name": "local-server",
"version": "0.1.0",
"license": "MIT",
"type": "module",
"main": "./dist/tsc/src/main.js",
"types": "./dist/tsc/src/main.d.ts",
"bin": {
"claude-code-in-xcode26": "./dist/tsc/src/main.js"
},
"scripts": {
"main": "tsx ./src/main.ts",
"lint": "eslint",
"lint:fix": "eslint --fix",
"lint:show-config": "eslint --print-config",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"test:debug": "node --experimental-vm-modules --inspect-brk node_modules/jest/bin/jest.js",
"tsx": "tsx",
"compile": "tsc -p tsconfig.json",
"compile:watch": "yarn compile --watch",
"build": "node ./build.js",
"build:prod": "NODE_ENV=production yarn build && yarn copy-to-app",
"build:watch": "yarn build --watch",
"watch": "yarn build:watch"
},
"dependencies": {
"@xterm/xterm": "^5.5.0",
"ansi-parser": "^3.2.11",
"ansi-regex": "^6.1.0",
"ansi-sequence-parser": "^1.1.3",
"express": "^4.21.2",
"express-promise-router": "^4.1.1",
"node-pty": "^1.0.0",
"openai": "^5.3.0"
},
"devDependencies": {
"@eslint/js": "^9.19.0",
"@types/express": "^5.0.0",
"@types/express-promise-router": "^3.0.2",
"@types/jest": "^29.5.0",
"@types/node": "^22.12.0",
"@typescript-eslint/eslint-plugin": "^8.22.0",
"@typescript-eslint/parser": "^8.22.0",
"esbuild": "^0.24.2",
"esbuild-plugin-tsc": "^0.4.0",
"eslint": "^9.19.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-prettier": "^5.4.0",
"eslint-plugin-react": "^7.37.4",
"fs-extra": "^11.3.0",
"jest": "^30.0.0",
"node-watch": "^0.7.4",
"prettier": "^3.4.2",
"ts-jest": "^29.3.4",
"tsx": "^4.19.2",
"typescript": "^5.7.3",
"typescript-eslint": "^8.22.0",
"yargs": "^17.7.2"
}
}