-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 958 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 958 Bytes
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
{
"name": "registry-web",
"version": "1.0.0",
"description": "The web interface for the Vix registry.",
"main": "vite.config.js",
"scripts": {
"registry:build": "node tools/build_registry_index.mjs",
"dev": "npm run registry:build && vite",
"build": "npm run registry:build && vite build",
"preview": "vite preview",
"deploy": "npm run build && node scripts/deploy.mjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vixcpp/registry-web.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "commonjs",
"bugs": {
"url": "https://github.com/vixcpp/registry-web/issues"
},
"homepage": "https://github.com/vixcpp/registry-web#readme",
"dependencies": {
"dompurify": "^3.4.1",
"marked": "^18.0.2",
"shiki": "^4.0.2",
"vue": "^3.5.33",
"vue-router": "^5.0.6"
},
"devDependencies": {
"@vitejs/plugin-vue": "^6.0.6",
"vite": "^8.0.10"
}
}