-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.23 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.23 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
{
"name": "oh-my-cli",
"version": "0.1.0",
"description": "A small code-agent CLI",
"type": "module",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/qwen-code-dev-bot/oh-my-cli.git"
},
"bugs": {
"url": "https://github.com/qwen-code-dev-bot/oh-my-cli/issues"
},
"homepage": "https://github.com/qwen-code-dev-bot/oh-my-cli#readme",
"bin": {
"oh-my-cli": "./dist/index.js"
},
"scripts": {
"build": "tsc",
"typecheck": "tsc --noEmit",
"test": "vitest run tests/unit",
"test:integration": "vitest run tests/integration && npm run test:desktop",
"test:desktop": "npm run build && timeout 30 xvfb-run -a electron --no-sandbox --disable-gpu scripts/test-desktop.mjs",
"smoke": "vitest run tests/smoke",
"desktop": "npm run build && electron .",
"postbuild": "node scripts/build-desktop.mjs"
},
"engines": {
"node": ">=22"
},
"dependencies": {
"commander": "^13.1.0",
"openai": "^4.96.0",
"zod": "^3.24.4"
},
"devDependencies": {
"@types/node": "^22.15.0",
"electron": "^43.1.1",
"esbuild": "^0.28.1",
"tsx": "^4.19.4",
"typescript": "^5.8.3",
"vitest": "^3.1.4"
},
"main": "dist/desktop/main.js"
}