@matdata/yasgui-graph-plugin 1.2.0 → 1.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +310 -301
- package/dist/yasgui-graph-plugin.cjs.css +103 -0
- package/dist/yasgui-graph-plugin.cjs.css.map +7 -0
- package/dist/yasgui-graph-plugin.cjs.js +456 -756
- package/dist/yasgui-graph-plugin.cjs.js.map +4 -4
- package/dist/yasgui-graph-plugin.css +117 -0
- package/dist/yasgui-graph-plugin.esm.css +103 -0
- package/dist/yasgui-graph-plugin.esm.css.map +7 -0
- package/dist/yasgui-graph-plugin.esm.js +451 -752
- package/dist/yasgui-graph-plugin.esm.js.map +4 -4
- package/dist/yasgui-graph-plugin.min.css +2 -0
- package/dist/yasgui-graph-plugin.min.css.map +7 -0
- package/dist/yasgui-graph-plugin.min.js +17 -17
- package/dist/yasgui-graph-plugin.min.js.map +4 -4
- package/package.json +22 -5
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@matdata/yasgui-graph-plugin",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "1.
|
|
4
|
+
"version": "1.4.0",
|
|
5
5
|
"description": "YASGUI plugin for visualizing SPARQL CONSTRUCT and DESCRIBE query results as interactive graphs",
|
|
6
6
|
"main": "dist/yasgui-graph-plugin.cjs.js",
|
|
7
7
|
"module": "dist/yasgui-graph-plugin.esm.js",
|
|
@@ -17,6 +17,9 @@
|
|
|
17
17
|
"build:demo": "vite build demo",
|
|
18
18
|
"preview:demo": "vite preview --port 5174",
|
|
19
19
|
"build": "node esbuild.config.js",
|
|
20
|
+
"typecheck": "tsc --noEmit",
|
|
21
|
+
"lint": "eslint src --ext .ts",
|
|
22
|
+
"format": "prettier --write \"src/**/*.{ts,scss}\"",
|
|
20
23
|
"test": "echo \"Manual browser testing per constitution\" && exit 0"
|
|
21
24
|
},
|
|
22
25
|
"repository": {
|
|
@@ -43,9 +46,23 @@
|
|
|
43
46
|
"vis-network": "^9.1.9"
|
|
44
47
|
},
|
|
45
48
|
"devDependencies": {
|
|
46
|
-
"
|
|
47
|
-
"
|
|
48
|
-
"eslint": "^8.
|
|
49
|
-
"
|
|
49
|
+
"@types/jest": "^30.0.0",
|
|
50
|
+
"@typescript-eslint/eslint-plugin": "^8.50.0",
|
|
51
|
+
"@typescript-eslint/parser": "^8.50.0",
|
|
52
|
+
"cross-env": "^10.1.0",
|
|
53
|
+
"cssnano": "^7.1.2",
|
|
54
|
+
"esbuild": "^0.27.1",
|
|
55
|
+
"eslint": "^9.39.2",
|
|
56
|
+
"identity-obj-proxy": "^3.0.0",
|
|
57
|
+
"jest": "^30.2.0",
|
|
58
|
+
"jest-environment-jsdom": "^30.2.0",
|
|
59
|
+
"postcss": "^8.4.32",
|
|
60
|
+
"postcss-import": "^16.1.1",
|
|
61
|
+
"prettier": "^3.7.4",
|
|
62
|
+
"ts-jest": "^29.4.6",
|
|
63
|
+
"tslib": "^2.8.1",
|
|
64
|
+
"typescript": "^5.9.3",
|
|
65
|
+
"vite": "^7.3.0",
|
|
66
|
+
"@types/node": "^20.0.0"
|
|
50
67
|
}
|
|
51
68
|
}
|