-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.5 KB
/
Copy pathpackage.json
File metadata and controls
96 lines (96 loc) · 2.5 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "leangraph",
"version": "1.2.2",
"description": "SQLite-based graph database with Cypher query support",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"leangraph": "dist/cli.js"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"prepare": "husky",
"build": "tsc",
"test": "vitest run",
"test:remote": "./scripts/test-remote.sh",
"test:all": "npm test && npm run test:remote",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"dev": "tsx watch src/server.ts",
"tck": "node --import tsx test/tck/run-test.ts",
"tck:failing": "node --import tsx test/tck/list-failing-tests.ts",
"tck:check-fixed": "TCK_TEST_ALL=1 npm test 2>&1 | grep -A 50 'from FAILING_TESTS that now PASS'",
"prepublishOnly": "npm run build",
"benchmark": "node --import tsx benchmark/src/run.ts",
"benchmark:report": "node --import tsx benchmark/src/report.ts",
"benchmark:compare": "node --import tsx benchmark/src/compare.ts",
"benchmark:analyze": "node --import tsx benchmark/src/analyze.ts",
"fuzz:docker": "docker compose -f test/fuzzing/docker-compose.yml up -d",
"fuzz:run": "npx tsx test/fuzzing/runner.ts",
"fuzz:stop": "docker compose -f test/fuzzing/docker-compose.yml down"
},
"dependencies": {
"@hono/node-server": "^1.13.0",
"commander": "^12.0.0",
"hono": "^4.0.0"
},
"peerDependencies": {
"better-sqlite3": "^12.0.0"
},
"peerDependenciesMeta": {
"better-sqlite3": {
"optional": true
}
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.0",
"@types/node": "^22.0.0",
"@vitest/coverage-v8": "^4.0.16",
"better-sqlite3": "^12.6.2",
"husky": "^9.1.7",
"neo4j-driver": "^6.0.1",
"tsx": "^4.0.0",
"typescript": "^5.3.0",
"vitest": "^4.0.16"
},
"keywords": [
"leangraph",
"graph",
"database",
"graphdb",
"cypher",
"opencypher",
"sqlite",
"typescript",
"neo4j",
"query"
],
"author": "Conrad Lelubre",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/co-l/leangraph.git"
},
"homepage": "https://leangraph.io",
"bugs": {
"url": "https://github.com/co-l/leangraph/issues"
},
"engines": {
"node": ">=18.0.0"
},
"publishConfig": {
"access": "public"
}
}