-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 3.37 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 3.37 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
75
76
77
78
79
{
"name": "codekeeper-advance",
"version": "0.1.0",
"description": "通用、去品牌化、Agent 自驱动的知识智库系统",
"main": "dist/index.js",
"bin": {
"codekeeper": "dist/advance/cli-entry.js"
},
"scripts": {
"copy-schema": "node -e \"const fs=require('fs');const src='src/advance/store/schema.sql';const dest='dist/advance/store/schema.sql';fs.mkdirSync('dist/advance/store',{recursive:true});fs.writeFileSync(dest, fs.readFileSync(src));\"",
"copy-prompts": "node scripts/copy-prompts.mjs",
"build": "node node_modules/typescript/bin/tsc && npm run copy-schema && npm run copy-prompts",
"dev": "node node_modules/tsx/dist/cli.mjs src/advance/cli-entry.ts",
"start": "node --max-old-space-size=8192 dist/advance/cli-entry.js start",
"test": "node scripts/test.mjs",
"test:vitest": "node node_modules/vitest/vitest.mjs run",
"test:watch": "node node_modules/vitest/vitest.mjs",
"lint": "ESLINT_USE_FLAT_CONFIG=false node node_modules/eslint/bin/eslint.js src --ext ts",
"format": "node node_modules/prettier/bin/prettier.cjs --check .",
"format:fix": "node node_modules/prettier/bin/prettier.cjs --write .",
"rebuild-native": "cd node_modules/better-sqlite3 && npm run build-release",
"electron:dev": "concurrently \"node node_modules/vite/bin/vite.js\" \"node node_modules/typescript/bin/tsc -p tsconfig.electron.json --watch\" \"node node_modules/wait-on/bin/wait-on http://localhost:5173 && node node_modules/electron/cli.js dist/electron/main/index.js\"",
"electron:dev:all": "npm run build && concurrently \"npm run start\" \"node node_modules/vite/bin/vite.js\" \"node node_modules/typescript/bin/tsc -p tsconfig.electron.json --watch\" \"node node_modules/wait-on/bin/wait-on http://localhost:5173 && node node_modules/electron/cli.js dist/electron/main/index.js\"",
"electron:build": "node node_modules/vite/bin/vite.js build && node node_modules/typescript/bin/tsc -p tsconfig.electron.json",
"electron:start": "npm run electron:build && node node_modules/electron/cli.js dist/electron/main/index.js"
},
"keywords": [
"code-review",
"gitlab",
"automation",
"ai",
"claude"
],
"license": "MIT",
"engines": {
"node": ">=22"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.39.0",
"@modelcontextprotocol/sdk": "^1.30.0",
"better-sqlite3": "^12.0.0",
"chokidar": "^4.0.0",
"dotenv": "^16.4.7",
"node-cron": "^4.6.0",
"pino": "^9.6.0",
"pino-pretty": "^13.0.0",
"simple-git": "^3.27.0",
"vis-data": "^8.0.4",
"vis-network": "^10.1.0",
"yaml": "^2.7.0",
"zod": "^3.24.2"
},
"devDependencies": {
"@testing-library/dom": "^10.4.1",
"@testing-library/react": "^16.3.2",
"@types/better-sqlite3": "^7.6.12",
"@types/node": "^22.13.10",
"@types/node-cron": "^3.0.11",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@typescript-eslint/eslint-plugin": "^8.26.1",
"@typescript-eslint/parser": "^8.26.1",
"@vitejs/plugin-react-swc": "^4.3.1",
"concurrently": "^10.0.4",
"electron": "^42.4.0",
"eslint": "^9.22.0",
"jsdom": "^29.1.1",
"prettier": "^3.5.3",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"react-markdown": "^10.1.0",
"react-router-dom": "^7.17.0",
"tsx": "^4.19.3",
"typescript": "^5.8.2",
"vite": "^6.4.3",
"vitest": "^3.0.0",
"wait-on": "^9.0.10"
}
}