-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 2.04 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 2.04 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
{
"name": "vibing-nvim",
"version": "2.0.0",
"description": "Neovim plugin that integrates Claude AI through the Agent SDK",
"keywords": [
"neovim",
"nvim",
"plugin",
"claude",
"ai",
"agent-sdk",
"chat",
"code-assistant"
],
"private": true,
"type": "module",
"bin": {
"vibing-agent": "./dist/bin/agent-wrapper.js"
},
"repository": {
"type": "git",
"url": "https://github.com/shabaraba/vibing.nvim.git"
},
"author": "shabaraba",
"bugs": {
"url": "https://github.com/shabaraba/vibing.nvim/issues"
},
"homepage": "https://github.com/shabaraba/vibing.nvim#readme",
"scripts": {
"build": "node scripts/build.mjs",
"build:watch": "node scripts/build.mjs --watch",
"test": "node dist/bin/agent-wrapper.js --prompt 'Say hello' --cwd $(pwd)",
"test:wrapper": "node dist/bin/agent-wrapper.js --prompt 'Test wrapper functionality' --cwd .",
"test:lua": "nvim --headless -u tests/minimal_init.lua -c \"PlenaryBustedDirectory tests/ { minimal_init = 'tests/minimal_init.lua' }\"",
"test:e2e": "nvim --headless -u tests/minimal_init.lua -c \"PlenaryBustedDirectory tests/e2e/ { minimal_init = 'tests/minimal_init.lua' }\"",
"check": "find lua -name '*.lua' -exec luac -p {} \\;",
"check:lua": "luac -p lua/vibing/init.lua",
"dev": "node dist/bin/agent-wrapper.js --prompt",
"validate": "npm run check && echo 'All checks passed'",
"format": "prettier --write '**/*.{js,mjs,ts,json,md,yml,yaml}'",
"format:check": "prettier --check '**/*.{js,mjs,ts,json,md,yml,yaml}'",
"lint": "eslint '**/*.{js,mjs,ts}'",
"lint:fix": "eslint --fix '**/*.{js,mjs,ts}'",
"lint:md": "markdownlint '**/*.md' --ignore node_modules"
},
"dependencies": {
"@anthropic-ai/claude-agent-sdk": "^0.1.76",
"neovim": "^5.4.0",
"zod": "^4.2.1"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@types/node": "^22.10.2",
"esbuild": "^0.24.2",
"eslint": "^9.17.0",
"markdownlint-cli": "^0.47.0",
"prettier": "^3.4.2",
"typescript": "^5.7.2"
}
}