-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
83 lines (83 loc) · 2.2 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
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
{
"name": "shacl-vue",
"version": "0.0.6",
"description": "Autogenerate user interfaces from SHACL shapes",
"main": "./dist/lib/shacl-vue.cjs.js",
"type": "module",
"module": "./dist/lib/shacl-vue.es.js",
"exports": {
".": {
"import": "./dist/lib/shacl-vue.es.js",
"require": "./dist/lib/shacl-vue.cjs.js"
},
"./shapedata": {
"import": "./dist/lib/shapedata.es.js",
"require": "./dist/lib/shapedata.cjs.js"
},
"./style.css": "./dist/lib/shacl-vue.css"
},
"files": [
"dist/lib"
],
"repository": {
"type": "git",
"url": "git+https://github.com/psychoinformatics-de/shacl-vue.git"
},
"keywords": [
"metadata",
"linked data",
"SHACL",
"RDF",
"editor",
"viewer",
"UI",
"VueJS"
],
"author": "Stephan Heunis",
"license": "MIT",
"bugs": {
"url": "https://github.com/psychoinformatics-de/shacl-vue/issues"
},
"homepage": "https://github.com/psychoinformatics-de/shacl-vue#readme",
"scripts": {
"dev": "vite --config vite.config.app.mjs",
"build": "npm run build:lib && npm run build:app",
"build:lib": "vite build --config vite.config.lib.mjs",
"build:app": "vite build --config vite.config.app.mjs",
"preview": "vite preview --config vite.config.app.mjs",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs",
"test": "vitest --config vite.config.lib.mjs"
},
"dependencies": {
"@mdi/font": "7.0.96",
"@rdfjs/dataset": "^2.0.2",
"@rdfjs/fetch-lite": "^3.3.0",
"@rdfjs/formats-common": "^3.1.0",
"@rdfjs/parser-n3": "^2.0.2",
"buffer": "^6.0.3",
"cytoscape": "^3.31.0",
"rdf-ext": "^2.5.2",
"roboto-fontface": "^0.10.0",
"util": "^0.12.5",
"uuid": "^10.0.0"
},
"devDependencies": {
"@vitejs/plugin-vue": "^5.2.1",
"@vue/test-utils": "^2.4.6",
"happy-dom": "^17.1.8",
"sass": "^1.85.1",
"unplugin-fonts": "^1.3.1",
"unplugin-vue-components": "^0.26.0",
"vite": "^6.2.0",
"vite-plugin-vuetify": "^2.1.0",
"vitepress": "^1.6.3",
"vitest": "^3.0.7",
"vue": "^3.4.0"
},
"peerDependencies": {
"vue": "^3.4.0",
"vuetify": "^3.7.14"
}
}