-
Notifications
You must be signed in to change notification settings - Fork 343
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 944 Bytes
/
package.json
File metadata and controls
46 lines (46 loc) · 944 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"name": "@ruvector/cli",
"version": "0.1.28",
"description": "Command-line interface for RuVector vector database with self-learning hooks",
"main": "dist/cli.js",
"types": "dist/cli.d.ts",
"bin": {
"ruvector": "dist/cli.js"
},
"scripts": {
"build": "tsc",
"clean": "rm -rf dist *.tsbuildinfo",
"test": "echo \"Tests not yet implemented\"",
"typecheck": "tsc --noEmit",
"lint": "eslint src --ext .ts"
},
"keywords": [
"vector",
"database",
"cli",
"command-line",
"hooks",
"intelligence",
"claude-code"
],
"author": "RuVector Team",
"license": "MIT",
"files": [
"dist",
"README.md"
],
"publishConfig": {
"access": "public"
},
"dependencies": {
"commander": "^12.0.0"
},
"optionalDependencies": {
"pg": "^8.11.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@types/pg": "^8.11.0",
"typescript": "^5.0.0"
}
}