-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 3.45 KB
/
package.json
File metadata and controls
107 lines (107 loc) · 3.45 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "ai",
"description": "Personalized AI assistant",
"displayName": "aidev",
"version": "0.0.0",
"publisher": "efritz",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/efritz/aidev"
},
"main": "./dist/extension.cjs",
"engines": {
"vscode": "^1.100.0"
},
"activationEvents": [
"onStartupFinished"
],
"contributes": {
"commands": [
{
"command": "aidev.chat",
"title": "Open aidev"
},
{
"command": "aidev.chat-history",
"title": "Open aidev from previous conversation"
}
],
"keybindings": [
{
"command": "aidev.chat",
"key": "cmd+shift+i"
}
]
},
"scripts": {
"dev": "bun ./src/cli.ts --cwd ${PWD}",
"clean": "rm -rf ./dist ai-0.0.0.vsix",
"build": "bun run ./scripts/build-extension.ts",
"install-node": "bun install --platform=node",
"vsce-package": "bun run vsce package --no-dependencies",
"package": "bun run install-node && bun run build && bun run vsce-package",
"format": "prettier '**/{*.{ts,json},.*.cjs}' --list-different --write",
"format:check": "prettier '**/{*.{ts,json},.*.cjs}' --check",
"lint": "eslint 'src/**/*.{js,ts}'",
"typecheck": "tsc --noEmit",
"test": "jest",
"update-golden": "UPDATE_GOLDEN=true bun test src/indexing/languages.test.ts",
"mirror-index": "bun ./scripts/mirror-index.ts",
"convert-transcript": "bun ./scripts/convert-transcript.ts"
},
"dependencies": {
"@anthropic-ai/sdk": "0.39.0",
"@google/generative-ai": "0.24.0",
"@humanwhocodes/gitignore-to-minimatch": "^1.0.2",
"@modelcontextprotocol/sdk": "1.10.2",
"@types/diff": "^7.0.2",
"@typescript-eslint/eslint-plugin": "^8.33.1",
"@vscode/vsce": "^3.4.2",
"chalk": "^5.4.1",
"chokidar": "^4.0.3",
"commander": "^13.1.0",
"copy-paste": "^2.1.1",
"deepmerge": "^4.3.1",
"diff": "^7.0.0",
"eventsource": "^3.0.7",
"glob": "^11.0.2",
"groq-sdk": "0.20.1",
"isbinaryfile": "^5.0.4",
"minimatch": "^10.0.1",
"ollama": "0.5.15",
"openai": "^4.104.0",
"ora": "^8.2.0",
"p-defer": "^4.0.1",
"sqlite-vec": "^0.1.7-alpha.2",
"tree-kill": "^1.2.2",
"tree-sitter": "^0.22.4",
"tree-sitter-go": "^0.23.4",
"tree-sitter-java": "^0.23.5",
"tree-sitter-typescript": "^0.23.2",
"tree-sitter-python": "^0.23.4",
"uuid": "^11.1.0",
"zod-to-json-schema": "^3.24.5",
"yaml": "^2.8.0",
"zod": "^3.25.50"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.4.2",
"@types/bun": "^1.2.15",
"@types/copy-paste": "^1.1.33",
"@types/jest": "^29.5.14",
"@types/node": "^22.15.29",
"@types/uuid": "^10.0.0",
"@types/vscode": "^1.100.0",
"@typescript-eslint/parser": "^8.33.1",
"bun-types": "^1.2.15",
"esbuild": "^0.25.5",
"eslint": "^9.28.0",
"eslint-plugin-unused-imports": "^4.1.4",
"jest": "^29.7.0",
"knip": "^5.59.1",
"prettier": "^3.5.3",
"ts-jest": "^29.3.4",
"typescript": "^5.8.3"
}
}