generated from ellisonleao/nvim-plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
37 lines (37 loc) · 817 Bytes
/
package.json
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
{
"name": "magenta.nvim",
"module": "magenta.ts",
"type": "module",
"devDependencies": {
"@types/node": "^22.10.5",
"typescript": "5.6.3",
"vitest": "^2.1.8"
},
"dependencies": {
"@anthropic-ai/bedrock-sdk": "^0.12.4",
"@anthropic-ai/sdk": "^0.37.0",
"eslint": "^9.17.0",
"ignore": "^7.0.0",
"nvim-node": "0.0.2",
"openai": "^4.77.0",
"tiktoken": "^1.0.18",
"tsx": "^4.19.2",
"typescript-eslint": "^8.19.0"
},
"overrides": {
"@anthropic-ai/bedrock-sdk": {
"@anthropic-ai/sdk": "^0.36.2"
}
},
"scripts": {
"start": "npx tsx node/index.ts"
},
"version": "0.0.0",
"description": "an AI agent / LLM coding assistant for neovim",
"main": "index.ts",
"directories": {
"doc": "doc"
},
"author": "",
"license": "ISC"
}