-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 923 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 923 Bytes
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
{
"name": "kisuke.vim",
"version": "0.2.0",
"description": "Vim/Neovim plugin to bring some AI features to vim. Really don't know where this is gonna go.",
"repository": "git@github.com:dorukozerr/kisuke.vim.git",
"author": "Doruk Özer <dorukozer@protonmail.com>",
"main": "dist/index.js",
"scripts": {
"format": "prettier src --check",
"lint": "eslint src",
"build": "yarn && yarn format && yarn lint && tsc"
},
"license": "MIT",
"private": false,
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^25.5.0",
"concurrently": "^9.2.1",
"eslint": "^10.1.0",
"eslint-plugin-prettier": "^5.5.5",
"globals": "^17.4.0",
"nodemon": "^3.1.14",
"prettier": "^3.8.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.57.1"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.81.0",
"@google/genai": "^1.46.0",
"openai": "^6.32.0"
}
}