-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.77 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.77 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
{
"name": "@matdata/yasgui-table-plugin",
"private": false,
"version": "0.1.0",
"description": "High-performance YASGUI plugin for rendering SPARQL SELECT results with interactive table features",
"main": "dist/yasgui-table-plugin.cjs.js",
"module": "dist/yasgui-table-plugin.esm.js",
"unpkg": "dist/yasgui-table-plugin.min.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"dev": "vite",
"build:demo": "vite build demo",
"preview:demo": "vite preview --port 5174",
"build": "node esbuild.config.js",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Matdata-eu/yasgui-table-plugin.git"
},
"keywords": ["yasgui", "yasr", "sparql", "table", "plugin", "semantic-web", "rdf" ],
"author": "Matdata",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/Matdata-eu/yasgui-table-plugin/issues"
},
"homepage": "https://github.com/Matdata-eu/yasgui-graph-plugin#readme",
"publishConfig": {
"access": "public"
},
"dependencies": {
"tabulator-tables": "^6.3.1"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"@typescript-eslint/eslint-plugin": "^8.50.0",
"@typescript-eslint/parser": "^8.50.0",
"cross-env": "^10.1.0",
"cssnano": "^7.1.2",
"esbuild": "^0.27.1",
"eslint": "^9.39.2",
"identity-obj-proxy": "^3.0.0",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"postcss": "^8.4.32",
"postcss-import": "^16.1.1",
"prettier": "^3.7.4",
"ts-jest": "^29.4.6",
"tslib": "^2.8.1",
"typescript": "^5.9.3",
"vite": "^7.3.0"
}
}