This repository has been archived by the owner on Feb 11, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 453
/
Copy pathpackage.json
88 lines (88 loc) · 2.95 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "dingtalk",
"version": "2.1.22",
"description": "钉钉桌面版,基于electron和钉钉网页版开发,支持Windows、Linux和macOS",
"author": "nashaofu <[email protected]>",
"main": "dist/main.js",
"scripts": {
"start": "electron .",
"lint": "eslint --ext .js,.vue src",
"dev": "npm-run-all --parallel dev:main dev:preload dev:renderer",
"postinstall": "electron-builder install-app-deps",
"dev:main": "webpack --config build/main/webpack.dev.conf.js",
"dev:preload": "webpack --config build/preload/webpack.dev.conf.js",
"dev:renderer": "webpack serve --config build/renderer/webpack.dev.conf.js",
"build": "npm-run-all --parallel build:main build:preload build:renderer",
"build:main": "webpack --config build/main/webpack.prod.conf.js",
"build:preload": "webpack --config build/preload/webpack.prod.conf.js",
"build:renderer": "webpack --config build/renderer/webpack.prod.conf.js",
"pack": "electron-builder --dir",
"release": "electron-builder"
},
"keywords": [
"dingtalk",
"钉钉",
"linux",
"macOS",
"Windows"
],
"dependencies": {
"@babel/runtime": "^7.16.7",
"@sentry/electron": "^2.5.4",
"axios": "^0.25.0",
"electron-localshortcut": "^3.2.1",
"electron-screenshots": "^0.5.12",
"electron-updater": "^4.6.1",
"lodash": "^4.17.21",
"normalize.css": "^8.0.1",
"vue": "^2.6.14"
},
"devDependencies": {
"@babel/core": "^7.16.10",
"@babel/eslint-parser": "^7.16.5",
"@babel/plugin-proposal-class-properties": "^7.16.7",
"@babel/plugin-proposal-export-default-from": "^7.16.7",
"@babel/plugin-transform-runtime": "^7.16.10",
"@babel/preset-env": "^7.16.11",
"autoprefixer": "^10.4.2",
"babel-loader": "^8.2.3",
"css-loader": "^6.5.1",
"electron": "^18.3.7",
"electron-builder": "^22.14.5",
"electron-debug": "^3.2.0",
"electron-dev-webpack-plugin": "^1.0.5",
"electron-devtools-installer": "^3.2.0",
"eslint": "^8.7.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-vue": "^8.3.0",
"eslint-webpack-plugin": "^3.1.1",
"html-webpack-plugin": "^5.5.0",
"less": "^4.1.2",
"less-loader": "^10.2.0",
"mini-css-extract-plugin": "^2.5.2",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.5",
"postcss-loader": "^6.2.1",
"pug": "^3.0.2",
"pug-plain-loader": "^1.1.0",
"style-loader": "^3.3.1",
"vue-loader": "^15.9.8",
"vue-template-compiler": "^2.6.14",
"webpack": "^5.67.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.7.3",
"webpack-merge": "^5.8.0"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/nashaofu/dingtalk.git"
},
"bugs": {
"url": "https://github.com/nashaofu/dingtalk/issues"
},
"homepage": "https://github.com/nashaofu/dingtalk#readme"
}