-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
76 lines (76 loc) · 2.03 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
{
"name": "@zazuko/spex",
"version": "0.2.1",
"author": "Zazuko (https://zazuko.com)",
"type": "module",
"scripts": {
"serve": "vite",
"build:app": "vite build",
"build:lib": "vite build -c vite.umd.config.js",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore --fix src",
"prepack": "npm run build:lib",
"release": "changeset publish"
},
"main": "dist/spex.js",
"exports": {
".": {
"import": "./dist/spex.js",
"require": "./dist/spex.umd.cjs"
}
},
"files": [
"/dist"
],
"dependencies": {
"@headlessui/vue": "^1.7.14",
"@heroicons/vue": "^2.0.18",
"@rdfjs-elements/rdf-editor": "^0.5.7",
"@zazuko/env": "^2.1.1",
"@zazuko/prefixes": "^2.2.0",
"@zazuko/vue-graph-layout": "^0.1.4",
"bulma": "^0.9.4",
"lodash.clonedeep": "^4.5.0",
"lodash.debounce": "^4.0.8",
"register-service-worker": "^1.7.2",
"sparql-http-client": "^3.0.0",
"splitpanes": "^3.1.5",
"vite": "^5.2.8",
"vue": "^3.3.4",
"vue-router": "^4.2.2"
},
"devDependencies": {
"@changesets/cli": "^2.26.1",
"@esbuild-plugins/node-globals-polyfill": "^0.2.3",
"@types/sparql-http-client": "^3",
"@typescript-eslint/eslint-plugin": "^5.59.9",
"@typescript-eslint/parser": "^5.59.9",
"@vitejs/plugin-vue": "^5.0.4",
"@vue/compiler-sfc": "^3.3.4",
"@vue/eslint-config-standard": "^8.0.1",
"@vue/eslint-config-typescript": "^11.0.3",
"autoprefixer": "^10.4.14",
"eslint": "^8.42.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-vue": "^9.14.1",
"postcss": "^8.4.38",
"rollup-plugin-node-polyfills": "^0.2.1",
"tailwindcss": "^3.3.2",
"typescript": "~5.0.0",
"vite-plugin-pwa": "^0.19.8"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/zazuko/spex.git"
},
"publishConfig": {
"access": "public"
}
}