-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.83 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.83 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
73
74
{
"name": "codeep",
"version": "1.3.30",
"description": "AI-powered coding assistant built for the terminal. Multiple LLM providers, project-aware context, and a seamless development workflow.",
"type": "module",
"main": "dist/index.js",
"bin": {
"codeep": "bin/codeep.js"
},
"scripts": {
"dev": "node --import tsx src/renderer/main.ts",
"prepack": "tsc; node scripts/fix-imports.js",
"build": "tsc && node scripts/fix-imports.js",
"start": "node dist/renderer/main.js",
"demo:renderer": "node --import tsx src/renderer/demo.ts",
"demo:app": "node --import tsx src/renderer/demo-app.ts",
"build:binary": "npm run build && pkg dist/renderer/main.js --targets node18-macos-arm64,node18-macos-x64,node18-linux-x64 --output bin/codeep",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/VladoIvankovic/Codeep.git"
},
"keywords": [
"ai",
"cli",
"tui",
"glm",
"z.ai",
"coding",
"assistant"
],
"author": "Vlado Ivankovic",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/VladoIvankovic/Codeep/issues"
},
"homepage": "https://codeep.dev",
"dependencies": {
"clipboardy": "^4.0.0",
"conf": "^12.0.0",
"keytar": "^7.9.0",
"open": "^10.0.0"
},
"devDependencies": {
"@types/node": "^20.10.0",
"@vitest/coverage-v8": "^4.0.18",
"pkg": "^5.8.1",
"tsx": "^4.7.0",
"typescript": "^6.0.2",
"vitest": "^4.0.18"
},
"engines": {
"node": ">=20.0.0"
},
"files": [
"bin/**/*",
"dist/**/*",
"!dist/**/*.test.js",
"!dist/**/*.test.d.ts",
"README.md",
"LICENSE"
],
"publishConfig": {
"access": "public"
},
"pkg": {
"assets": [
"dist/acp/**/*"
]
}
}