-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.66 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.66 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
{
"name": "sqlite-graph",
"version": "0.3.0",
"description": "High-performance graph database built on SQLite with a fluent query DSL",
"license": "MIT",
"author": "Michael O'Boyle",
"repository": {
"type": "git",
"url": "https://github.com/michaeloboyle/sqlite-graph.git"
},
"homepage": "https://github.com/michaeloboyle/sqlite-graph#readme",
"bugs": {
"url": "https://github.com/michaeloboyle/sqlite-graph/issues"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"bench": "node benchmarks/index.js",
"lint": "eslint src/**/*.ts",
"format": "prettier --write src/**/*.ts",
"prepublishOnly": "npm run build && npm test",
"ci:status": "./scripts/check-ci.sh"
},
"dependencies": {
"better-sqlite3": "^11.0.0"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.8",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.5",
"@types/jest": "^29.5.0",
"@types/node": "^20.10.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"cors": "^2.8.5",
"eslint": "^8.0.0",
"express": "^5.1.0",
"jest": "^29.7.0",
"prettier": "^3.0.0",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.2",
"typescript": "^5.3.0",
"vis-data": "^8.0.3",
"vis-network": "^10.0.2"
},
"keywords": [
"graph",
"database",
"sqlite",
"graph-database",
"query",
"relationships",
"nodes",
"edges",
"fluent-api",
"typescript"
]
}