-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.13 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.13 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
64
65
66
67
68
69
70
71
72
{
"name": "imcodes",
"version": "0.1.2",
"description": "A chat interface for AI coding agents — control Claude Code, Codex, Gemini CLI, OpenCode from browser and mobile",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/im4codes/imcodes"
},
"bin": {
"imcodes": "./dist/src/index.js"
},
"type": "module",
"main": "./dist/src/index.js",
"files": [
"dist/",
"config/"
],
"engines": {
"node": ">=20"
},
"scripts": {
"build": "tsc",
"postbuild": "node scripts/mark-bin-executable.mjs",
"dev": "tsx src/index.ts",
"start": "node dist/index.ts",
"test": "vitest run",
"test:unit": "vitest run --project daemon",
"test:server": "vitest run --project server",
"test:web": "vitest run --project web",
"test:e2e": "vitest run --project e2e",
"test:integration": "vitest run --workspace vitest.integration.config.ts",
"test:coverage": "vitest run --coverage && node scripts/write-coverage-summary.mjs",
"test:watch": "vitest",
"lint": "eslint src/",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run build && npm run test:unit && npm run test:server && npm run test:web",
"prepare": "husky"
},
"dependencies": {
"@anthropic-ai/claude-agent-sdk": "^0.2.92",
"@openai/codex-sdk": "^0.118.0",
"commander": "^12.1.0",
"croner": "^10.0.1",
"fzf": "^0.5.2",
"node-pty": "^1.0.0",
"octokit": "^4.0.2",
"pino": "^9.5.0",
"pino-pretty": "^13.1.3",
"tsx": "^4.19.0",
"ws": "^8.18.0",
"yaml": "^2.6.0"
},
"devDependencies": {
"@types/node": "^24.0.0",
"@types/ws": "^8.5.13",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"@vitest/coverage-v8": "^2.1.0",
"eslint": "^9.0.0",
"hono": "^4.12.5",
"husky": "^9.1.7",
"jsdom": "^28.1.0",
"lint-staged": "^16.3.4",
"typescript": "^5.7.0",
"vitest": "^2.1.0",
"zod": "^4.3.6"
},
"lint-staged": {
"**/*": "grep -qvE 'API_KEY|SECRET|PASSWORD|TOKEN|PRIVATE_KEY' || (echo 'Error: Potential sensitive information detected in your commit!' && exit 1)"
}
}