-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.8 KB
/
Copy pathpackage.json
File metadata and controls
91 lines (91 loc) · 2.8 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
{
"name": "graph-explorer",
"version": "2.0.1",
"description": "Graph Explorer can be used to explore and RDF graphs in SPARQL endpoints or on the web.",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/zazuko/graph-explorer.git"
},
"keywords": [
"owl",
"graph",
"rdf",
"diagram",
"sparql"
],
"author": {
"name": "RDF Tools",
"url": "https://github.com/zazuko/graph-explorer"
},
"license": "LGPL-2.1",
"bugs": {
"url": "https://github.com/zazuko/graph-explorer/issues"
},
"homepage": "https://github.com/zazuko/graph-explorer#readme",
"scripts": {
"demo": "vite --config vite.demo.config.mts",
"build": "vite build && npm run typings",
"build-all": "vite build && BUNDLE_PEERS=true vite build && npm run typings",
"build-examples": "vite build --config vite.demo.config.mts",
"typings": "npm run _typings-tsc && npm run _typings-dts-bundle",
"test": "vitest run",
"test:watch": "vitest",
"test:e2e": "playwright test",
"lint": "eslint './{src,examples,tests}/**/*.{ts,tsx}'",
"_typings-tsc": "./node_modules/.bin/tsc --project tsconfig.typings.json",
"_typings-dts-bundle": "./node_modules/.bin/dts-bundle --configJson dts-bundle.json",
"release": "npm run build-all && npm run typings && changeset publish"
},
"dependencies": {
"@rdfjs/data-model": "^2.1.2",
"@rdfjs/types": "^2.0.1",
"@types/n3": "^1.21.1",
"@types/rdfjs__data-model": "^2.0.9",
"@types/sparqljs": "^3.1.3",
"d3-color": "^3.1.0",
"file-saverjs": "~1.3.6",
"lodash": "^4.18.1",
"n3": "^2.1.1",
"sparql-http-client": "^3.0.1",
"sparqljs": "^3.6.2",
"webcola": "^3.4.0"
},
"peerDependencies": {
"react": "^18.0.0 || ^19.0.0",
"react-dom": "^18.0.0 || ^19.0.0"
},
"devDependencies": {
"@changesets/cli": "^2.31.1",
"@eslint/js": "^10.0.1",
"@playwright/test": "^1.61.1",
"@stylistic/eslint-plugin": "^5.10.0",
"@types/d3-color": "^3.1.3",
"@types/lodash": "^4.14.191",
"@types/node": "^26.1.1",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@types/sparql-http-client": "^3.0.5",
"@typescript-eslint/eslint-plugin": "^8.63.0",
"dts-bundle": "^0.7.3",
"esbuild": "^0.28.1",
"eslint": "^10.7.0",
"eslint-config-prettier": "^10.0.2",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"sass": "^1.85.1",
"tslib": "2.8.1",
"typescript": "^6.0.3",
"typescript-eslint": "^8.63.0",
"vite": "^8.1.4",
"vite-plugin-css-injected-by-js": "^5.0.1",
"vite-plugin-node-polyfills": "^0.28.0",
"vitest": "^4.1.10"
},
"main": "dist/graph-explorer.js",
"module": "dist/graph-explorer.mjs",
"typings": "dist/graph-explorer.d.ts",
"publishConfig": {
"access": "public",
"provenance": true
}
}