-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 744 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 744 Bytes
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
{
"name": "qoder-wrapper",
"version": "0.1.0",
"description": "Drop-in replacement for qodercli with automatic permission bypass",
"type": "module",
"bin": {
"myqodercli": "./dist/bin/cli.cjs"
},
"scripts": {
"build": "tsc --noEmit && node scripts/build.mjs",
"build:install": "npm run build && bash scripts/build-install.sh",
"release": "bash scripts/build-install.sh",
"typecheck": "tsc --noEmit",
"dev": "node --import tsx src/bin/cli.ts"
},
"dependencies": {
"@homebridge/node-pty-prebuilt-multiarch": "^0.14.0"
},
"devDependencies": {
"@types/node": "^22.0.0",
"esbuild": "^0.25.0",
"tsx": "^4.19.0",
"typescript": "^5.9.3"
},
"engines": {
"node": ">=18.0.0"
}
}