-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.23 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.23 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
{
"name": "graphmemory-ide",
"version": "1.0.0",
"description": "CLI and plugin tooling for GraphMemory-IDE (Node/TypeScript)",
"main": "cli/index.js",
"scripts": {
"build": "tsc",
"start": "node cli/index.mjs",
"test": "vitest run",
"lint": "eslint . --ext .ts,.js",
"format": "prettier --write ."
},
"bin": {
"graphmemory": "cli/index.js"
},
"keywords": [
"graphmemory",
"cli",
"ide",
"plugin",
"kuzu",
"mcp"
],
"author": "GraphMemory Team",
"license": "MIT",
"dependencies": {
"@grpc/grpc-js": "^1.8.14",
"@grpc/proto-loader": "^0.7.7",
"atomically": "^2.0.3",
"chalk": "^5.3.0",
"commander": "^11.0.0",
"inquirer": "^9.2.7",
"jsonwebtoken": "^9.0.2",
"node-fetch": "^3.3.2",
"proper-lockfile": "^4.1.2",
"semver": "^7.6.0"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.11.30",
"@vitest/coverage-v8": "^3.1.4",
"eslint": "^8.56.0",
"jest": "^29.7.0",
"mock-stdin": "^1.0.0",
"nock": "^13.5.4",
"prettier": "^3.2.5",
"sinon": "^17.0.1",
"ts-node": "^10.9.2",
"typescript": "^5.4.5",
"vitest": "^3.1.4"
},
"engines": {
"node": ">=18.0.0"
},
"type": "module"
}