-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.29 KB
/
package.json
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
{
"name": "quadstore-browser",
"version": "0.0.1",
"description": "Reference repository for using quadstore in browsers",
"keywords": [
"node",
"nodejs",
"quadstore",
"graph",
"rdf",
"database",
"sparql",
"rdfjs",
"browser"
],
"type": "module",
"main": "dist/bundle.js",
"types": "dist/bundle.d.ts",
"scripts": {
"test": "echo 'error'",
"clean": "rm -rf dist",
"build:ts": "tsc",
"build:webpack": "webpack -c webpack.config.cjs",
"build": "npm run clean && npm run build:ts && npm run build:webpack",
"analyze-bundle": "webpack -c webpack.config.cjs --analyze"
},
"repository": {
"type": "git",
"url": "https://github.com/quadstorejs/quadstore-browser.git"
},
"devDependencies": {
"browser-level": "2.0.0",
"events": "^3.3.0",
"quadstore": "^14.0.0",
"quadstore-comunica": "^5.0.0",
"rdf-data-factory": "^1.1.2",
"typescript": "^5.7.2",
"webpack": "^5.96.1",
"webpack-bundle-analyzer": "^4.10.2",
"webpack-cli": "^5.1.4"
},
"author": "Jacopo Scazzosi <jacopo@scazzosi.com>",
"engineStrict": true,
"engines": {
"node": ">=16.0.0"
},
"license": "MIT",
"homepage": "https://github.com/quadstorejs/quadstore",
"bugs": "https://github.com/quadstorejs/quadstore/issues"
}