-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.99 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
{
"name": "einstein",
"version": "0.0.1",
"main": "./dist/main/main.js",
"scripts": {
"postinstall": "patch-package",
"build": "npm run build:webpack && npm run build:electron",
"build:webpack": "webpack",
"build:electron": ".bin/build-electron.sh",
"clean": "rm -rf node_modules && rm -rf dist/{electron,main,node,plugins,renderer}",
"lint": "eslint --ext .ts,.js,.vue src/ plugins/",
"lint:fix": "npm run lint -- --fix",
"format": "prettier -w src/ plugins/ && eslint --ext .ts,.js,.vue --fix src/ plugins/",
"run": "npm run build:webpack && electron .",
"run:without-build": "electron .",
"watch": "webpack --watch"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@types/node": "^16.11.19",
"@typescript-eslint/eslint-plugin": "^8.4.0",
"@typescript-eslint/parser": "^8.10.0",
"@vue/compiler-sfc": "^3.5.12",
"babel-loader": "^9.2.1",
"babel-plugin-module-resolver": "^5.0.2",
"clean-webpack-plugin": "^4.0.0",
"create-file-webpack": "^1.0.2",
"css-loader": "^7.1.2",
"electron": "^33.0.0",
"electron-debug": "^4.1.0",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-tsdoc": "^0.3.0",
"eslint-plugin-vue": "^9.28.0",
"eslint-webpack-plugin": "^4.2.0",
"html-webpack-plugin": "^5.6.3",
"mini-css-extract-plugin": "^2.9.1",
"patch-package": "^8.0.0",
"prettier": "^3.3.3",
"prettier-eslint": "^16.3.0",
"sass": "^1.80.4",
"sass-loader": "^16.0.2",
"ts-loader": "^9.5.1",
"typescript": "^5.5.4",
"vue-eslint-parser": "^9.4.3",
"vue-loader": "^17.4.2",
"webpack": "^5.95.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.1.0",
"webpack-hot-middleware": "^2.26.1",
"webpack-merge": "^6.0.1"
},
"dependencies": {
"comment-json": "^4.2.5",
"fuse.js": "^7.0.0",
"source-map-support": "^0.5.21",
"vm2": "^3.9.19",
"vue": "^3.5.8"
}
}