-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.68 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.68 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "misthin-tools",
"version": "0.1.8",
"author": "bwrong<ibwrong@foxmail.com>",
"license": "MIT",
"keywords": [
"misthin",
"cli",
"vue",
"react",
"template",
"deploy",
"electron"
],
"description": "",
"scripts": {
"serve": "vue-cli-service electron:serve",
"build": "vue-cli-service electron:build",
"build:w": "npm run build -- --win",
"build:l": "npm run build -- --linux",
"build:all": "npm run build -- -mwl",
"generate-icons": "electron-icon-builder --input=./build/logo.png --output=build --flatten",
"postinstall": "electron-builder install-app-deps",
"postuninstall": "electron-builder install-app-deps",
"release": "npm run build -- -mwl --publish always",
"changelog": "standard-version --infile CHANGELOG.md"
},
"main": "background.js",
"dependencies": {
"@ant-design/icons-vue": "^6.0.1",
"ant-design-vue": "^2.2.8",
"axios": "^0.24.0",
"core-js": "^3.19.1",
"crypto-js": "^4.1.1",
"dayjs": "^1.10.7",
"download-git-repo": "^3.0.2",
"electron-updater": "^4.6.1",
"fix-path": "^3.0.0",
"fs-extra": "^10.0.0",
"lowdb": "^1.0.0",
"node-ssh": "^11.1.1",
"vue": "^3.2.23",
"vue-router": "^4.0.12",
"vuex": "^4.0.2"
},
"devDependencies": {
"@types/crypto-js": "^4.0.2",
"@types/electron-devtools-installer": "^2.2.0",
"@types/fs-extra": "^9.0.13",
"@types/lowdb": "^1.0.11",
"@types/node": "^16.11.10",
"@typescript-eslint/eslint-plugin": "^4.29.2",
"@typescript-eslint/parser": "^4.29.2",
"@vue/cli-plugin-babel": "^4.5.15",
"@vue/cli-plugin-eslint": "^4.5.15",
"@vue/cli-plugin-router": "^4.5.15",
"@vue/cli-plugin-typescript": "^4.5.15",
"@vue/cli-plugin-vuex": "^4.5.15",
"@vue/cli-service": "^4.5.15",
"@vue/compiler-sfc": "^3.2.23",
"@vue/eslint-config-prettier": "^6.0.0",
"@vue/eslint-config-typescript": "^7.0.0",
"antd-dayjs-webpack-plugin": "^1.0.6",
"babel-plugin-import": "^1.13.3",
"cz-conventional-changelog": "^3.3.0",
"electron": "^13.2.1",
"electron-devtools-installer": "^3.2.0",
"electron-icon-builder": "^2.0.1",
"eslint": "^6.8.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-vue": "^7.16.0",
"less": "^4.1.2",
"less-loader": "^7.3.0",
"lint-staged": "^11.1.2",
"prettier": "^2.5.0",
"standard-version": "^9.3.2",
"tailwindcss": "npm:@tailwindcss/postcss7-compat@^2.1.2",
"typescript": "^4.5.2",
"vue-cli-plugin-electron-builder": "^2.1.1"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"standard-version": {
"skip": {
"commit": false
}
}
}