-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.84 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.84 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
{
"name": "quadstore",
"version": "15.4.1",
"description": "Quadstore is a LevelDB-backed RDF graph database / triplestore for JavaScript runtimes (browsers, Node.js, Deno, Bun, ...) that implements the RDF/JS interfaces and supports SPARQL queries and querying across named graphs.",
"keywords": [
"node",
"deno",
"bun",
"browser",
"triplestore",
"quadstore",
"graph",
"rdf",
"store",
"level",
"leveldb",
"database",
"sparql",
"rdfjs",
"RDF/JS",
"triple",
"quad"
],
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"clean": "rm -rf dist",
"watch": "npm run clean && tsc --watch",
"test": "node --test dist/test/main.js",
"build": "npm run clean && tsc -p tsconfig.json",
"publish:alpha": "npm run build && npm publish --tag alpha",
"publish:beta": "npm run build && npm publish --tag beta"
},
"files": [
"dist/**/*.js",
"dist/**/*.d.ts",
"!dist/test/**/*.*"
],
"repository": {
"type": "git",
"url": "https://github.com/quadstorejs/quadstore.git"
},
"devDependencies": {
"@types/chai": "^5.2.2",
"@types/node": "^24.8.1",
"chai": "^6.2.0",
"classic-level": "^3.0.0",
"memory-level": "^3.1.0",
"rdf-data-factory": "^2.0.2",
"typescript": "^5.9.3"
},
"dependencies": {
"@rdfjs/types": "^2.0.1",
"abstract-level": "^3.1.1",
"asynciterator": "^3.10.0",
"js-sorted-set": "^0.7.0"
},
"author": "Jacopo Scazzosi <jacopo@scazzosi.com>",
"contributors": [
"Jacopo Scazzosi <jacopo@scazzosi.com>",
"Matteo Murgida <teomurgi@gmail.com>"
],
"engineStrict": true,
"engines": {
"node": ">=18.0.0"
},
"license": "MIT",
"homepage": "https://github.com/quadstorejs/quadstore",
"bugs": "https://github.com/quadstorejs/quadstore/issues"
}