-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.88 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.88 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
{
"name": "ewishper",
"version": "1.0.0",
"type": "module",
"main": "dist/main/main.js",
"scripts": {
"start": "electron .",
"dev": "concurrently -k \"npm run dev:renderer\" \"npm run dev:main\"",
"dev:renderer": "vite",
"dev:main": "cross-env NODE_ENV=development npm run build:main && npm run build:preload && electron dist/main/main.js",
"build": "npm run build:renderer && npm run build:main && npm run build:preload",
"build:renderer": "vite build",
"build:main": "tsc -p tsconfig.main.json",
"build:preload": "tsc src/renderer/preload.ts --outDir dist/renderer --target es2020 --module commonjs --moduleResolution node --esModuleInterop --allowSyntheticDefaultImports --skipLibCheck",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint src --ext .ts,.vue --fix",
"lint:check": "eslint src --ext .ts,.vue",
"format": "prettier --write \"src/**/*.{ts,vue,js,json,css,scss}\"",
"format:check": "prettier --check \"src/**/*.{ts,vue,js,json,css,scss}\"",
"format:clean": "npm run lint && npm run format",
"type-check": "vue-tsc --noEmit"
},
"author": "",
"license": "ISC",
"description": "",
"devDependencies": {
"@eslint/js": "^9.34.0",
"@types/node": "^18.17.5",
"@typescript-eslint/eslint-plugin": "^8.42.0",
"@typescript-eslint/parser": "^8.42.0",
"@vitejs/plugin-vue": "^4.2.3",
"@vue/eslint-config-typescript": "^14.6.0",
"concurrently": "^8.2.0",
"cross-env": "^7.0.3",
"electron": "^37.3.1",
"electron-is-dev": "^2.0.0",
"eslint": "^9.34.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-vue": "^10.4.0",
"prettier": "^3.6.2",
"typescript": "^5.1.6",
"vite": "^4.4.9",
"vue-tsc": "^1.8.8",
"wait-on": "^7.0.1"
},
"dependencies": {
"@arco-design/web-vue": "^2.57.0",
"vue": "^3.3.4"
}
}