-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 2.29 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
{
"name": "pets-desktop",
"private": true,
"version": "0.0.0",
"scripts": {
"tauri": "tauri",
"dev-mmd": "cross-env NODE_ENV=development webpack serve --config ./config/webpack.mmd.js",
"prod-mmd": "cross-env NODE_ENV=production webpack --config ./config/webpack.mmd.js",
"dev-live2d": "cross-env NODE_ENV=development webpack serve --config ./config/webpack.live2d.js",
"prod-live2d": "cross-env NODE_ENV=production webpack --config ./config/webpack.live2d.js",
"dev-software": "cross-env NODE_ENV=development webpack serve --config ./config/webpack.software.js",
"prod-software": "cross-env NODE_ENV=production webpack --config ./config/webpack.software.js"
},
"devDependencies": {
"@babel/core": "^7.21.8",
"@babel/eslint-parser": "^7.21.8",
"@babel/plugin-transform-runtime": "^7.21.4",
"@babel/preset-env": "^7.21.5",
"@tauri-apps/cli": "^1.3.1",
"@types/three": "^0.152.1",
"@typescript-eslint/eslint-plugin": "^5.59.6",
"@typescript-eslint/parser": "^5.59.6",
"@vue/cli-plugin-babel": "^5.0.8",
"@vue/preload-webpack-plugin": "^2.0.0",
"ammojs-typed": "^1.0.6",
"babel-loader": "^9.1.2",
"copy-webpack-plugin": "^11.0.0",
"cross-env": "^7.0.3",
"css-minimizer-webpack-plugin": "^5.0.0",
"eslint": "^8.41.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-vue": "^9.11.0",
"eslint-webpack-plugin": "^4.0.1",
"fs": "^0.0.1-security",
"html-webpack-plugin": "^5.5.1",
"mini-css-extract-plugin": "^2.7.5",
"path": "^0.12.7",
"postcss": "^8.4.23",
"postcss-loader": "^7.3.0",
"postcss-preset-env": "^8.3.2",
"ts-loader": "^9.4.2",
"typescript": "^5.0.4",
"vue-loader": "^17.1.0",
"vue-style-loader": "^4.1.3",
"vue-template-compiler": "^2.7.14",
"webpack": "^5.81.0",
"webpack-cli": "^5.0.2",
"webpack-dev-server": "^4.13.3"
},
"description": "一款桌面宠物软件",
"author": "zhulonghao",
"license": "ISC",
"dependencies": {
"@tauri-apps/api": "^1.3.0",
"axios": "^1.4.0",
"crypto-js": "^4.1.1",
"element-plus": "^2.3.4",
"pixi-live2d-display": "^0.4.0",
"pixi.js": "^6.5.2",
"three": "^0.152.2",
"vue": "^3.2.47",
"vue-router": "^4.1.6"
},
"browserslist": [
"last 2 version",
"> 1%",
"not dead"
]
}