-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.52 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.52 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
{
"name": "ro-crate-explorer",
"version": "0.0.0",
"private": true,
"type": "module",
"engines": {
"node": "^20.19.0 || >=22.12.0"
},
"scripts": {
"dev": "vite",
"dev:stateless": "vite --mode stateless",
"dev:stateful": "vite --mode stateful",
"build": "run-p type-check \"build-only {@}\" --",
"build:stateless": "run-p type-check build-only:stateless",
"build:stateful": "run-p type-check build-only:stateful",
"preview": "vite preview",
"build-only": "vite build",
"build-only:stateless": "vite build --mode stateless",
"build-only:stateful": "vite build --mode stateful",
"type-check": "vue-tsc --build",
"format": "prettier --write --experimental-cli src/"
},
"dependencies": {
"@tailwindcss/vite": "^4.1.17",
"@vueuse/core": "^14.1.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"fuse.js": "^7.1.0",
"jsonld": "^9.0.0",
"jszip": "^3.10.1",
"lucide-vue-next": "^0.555.0",
"reka-ui": "^2.6.1",
"ro-crate": "^3.6.1",
"tailwind-merge": "^3.4.0",
"tailwindcss": "^4.1.17",
"vue": "^3.5.25",
"vue-router": "^4.6.3"
},
"devDependencies": {
"@tsconfig/node24": "^24.0.3",
"@types/jsonld": "^1.5.15",
"@types/node": "^24.10.1",
"@vitejs/plugin-vue": "^6.0.2",
"@vue/tsconfig": "^0.8.1",
"npm-run-all2": "^8.0.4",
"prettier": "3.6.2",
"tw-animate-css": "^1.4.0",
"typescript": "~5.9.0",
"vite": "^7.2.4",
"vite-plugin-vue-devtools": "^8.0.5",
"vue-tsc": "^3.1.5"
}
}