-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.45 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.45 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
61
{
"name": "live2d-viewer",
"version": "1.0.0",
"description": "live2d-viewer",
"main": "electron/main.js",
"scripts": {
"dev": "vite",
"build": "npm run generate-models-index && vite build",
"preview": "vite preview",
"generate-models-index": "node scripts/generate-models-index.js",
"electron-dev": "concurrently \"npm run dev\" \"wait-on http://localhost:5173 && electron .\"",
"electron-build": "npm run build && electron-builder",
"dist": "npm run build && electron-builder --publish=never"
},
"keywords": [
"electron",
"vue",
"live2d",
"vtuber"
],
"author": "Your Name",
"license": "MIT",
"devDependencies": {
"@ricky0123/vad-web": "^0.0.22",
"@vitejs/plugin-vue": "^4.5.0",
"concurrently": "^8.2.2",
"electron": "^27.1.3",
"electron-builder": "^24.6.4",
"naive-ui": "^2.41.0",
"sharp": "^0.34.2",
"vite": "^5.0.0",
"wait-on": "^7.2.0"
},
"dependencies": {
"@vicons/ionicons5": "^0.13.0",
"lodash-es": "^4.17.21",
"pinia": "^2.1.7",
"vue": "^3.3.8"
},
"build": {
"appId": "com.live2d.viewer",
"productName": "Live2D viewer",
"directories": {
"output": "dist-electron"
},
"files": [
"dist/**/*",
"electron/**/*",
"node_modules/**/*"
],
"mac": {
"category": "public.app-category.entertainment"
},
"win": {
"target": "nsis"
},
"linux": {
"target": "AppImage"
}
}
}