-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathpackage.json
90 lines (90 loc) · 2.96 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
89
90
{
"name": "double-mouse-downloader",
"version": "1.1.0",
"description": "鼠鼠下载器——跨平台哔哩哔哩视频下载工具。",
"main": "./build/main/main.js",
"private": "true",
"scripts": {
"start": "npm-run-all --parallel start:main start:main:watch start:renderer",
"start:main": "cross-env NODE_ENV=development nodemon -w ./build/ -e js -x electron .",
"start:main:watch": "tsc -p ./src/main/tsconfig.json --sourceMap --watch",
"start:renderer": "vite -c ./src/renderer/vite.config.js",
"prepare-debug": "npm-run-all --parallel start:main:watch start:renderer",
"clear": "rimraf ./build",
"build:main": "tsc -p ./src/main/tsconfig.json",
"build:renderer": "vite build -c ./src/renderer/vite.config.js",
"build": "npm-run-all clear build:main build:renderer",
"dist": "npm run build && electron-builder",
"pack": "npm run build && electron-builder --dir",
"lint": "prettier --write . && eslint --fix .",
"prepare": "husky install"
},
"keywords": [],
"author": "MoyuScript <[email protected]>",
"license": "GPL-3.0-or-later",
"lint-staged": {
"*.{ts,tsx,js,css,less,html,yml,json}": [
"prettier --write"
],
"*.{ts,tsx,js}": [
"eslint --fix"
]
},
"homepage": "https://github.com/MoyuScript/double-mouse-downloader",
"repository": "https://github.com/MoyuScript/double-mouse-downloader",
"devDependencies": {
"@commitlint/cli": "^17.0.2",
"@commitlint/config-conventional": "^17.0.2",
"@types/lodash": "^4.14.182",
"@types/node": "^17.0.40",
"@types/react": "^18.0.12",
"@types/react-dom": "^18.0.5",
"@types/react-transition-group": "^4.4.4",
"@types/semver": "^7.3.10",
"@types/tough-cookie": "^4.0.2",
"@types/ws": "^8.5.3",
"@typescript-eslint/eslint-plugin": "^5.27.1",
"@typescript-eslint/parser": "^5.27.1",
"@vitejs/plugin-react": "^1.3.2",
"cross-env": "^7.0.3",
"electron": "^19.0.3",
"electron-builder": "^23.0.3",
"eslint": "^8.17.0",
"eslint-plugin-react": "^7.30.0",
"husky": "^8.0.1",
"less": "^4.1.3",
"lint-staged": "^13.0.1",
"nodemon": "^2.0.16",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"typescript": "^4.7.3",
"vite": "^2.9.10"
},
"dependencies": {
"@ant-design/icons": "^4.7.0",
"@reduxjs/toolkit": "^1.8.2",
"ahooks": "^3.4.1",
"antd": "^4.21.0",
"axios": "^0.27.2",
"axios-cookiejar-support": "^4.0.2",
"electron-devtools-installer": "^3.2.0",
"electron-store": "^8.0.2",
"filenamify": "^5.1.1",
"get-port-please": "^2.5.0",
"joi": "^17.6.0",
"lodash": "^4.17.21",
"log4js": "^6.5.2",
"moment": "^2.29.3",
"os-proxy-config": "^1.1.1",
"pupa": "^3.1.0",
"qrcode.react": "^3.0.2",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"react-redux": "^8.0.2",
"react-router-dom": "^6.3.0",
"react-transition-group": "^4.4.2",
"semver": "^7.3.7",
"tough-cookie": "^4.0.0",
"ws": "^8.8.0"
}
}