-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 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
{
"name": "Vigad",
"version": "1.0.0",
"main": "dist-electron/main/index.js",
"description": "A desktop application to read out data.",
"author": "Vigad Team",
"private": true,
"scripts": {
"dev": "vite",
"test": "vitest --environment happy-dom",
"test-ui": "vitest --ui --environment happy-dom",
"test-coverage": "vitest run --coverage --environment happy-dom",
"build:win": "vue-tsc --noEmit && vite build && electron-builder --win --publish never",
"build:mac": "vue-tsc --noEmit && vite build && electron-builder --mac --publish never",
"build:linux": "vue-tsc --noEmit && vite build && electron-builder --linux --publish never",
"build:all": "vue-tsc --noEmit && vite build && electron-builder --mac --win --linux --publish never",
"gen-uml": "tplant --input src/proc/**/*.ts --output docs/proc-uml.svg -A",
"lint": "npm run lint:ts && npm run lint:prettier",
"lint:ts": "eslint --ext \".ts,.vue\" --ignore-path .gitignore .",
"lint:prettier": "prettier --check .",
"lint:fix": "prettier --write --list-different . && npm run lint:ts --fix"
},
"engines": {
"node": "^14.18.0 || >=16.0.0"
},
"debug": {
"env": {
"VITE_DEV_SERVER_URL": "http://127.0.0.1:3344"
}
},
"keywords": [
"electron",
"rollup",
"vite",
"vue3",
"vue"
],
"devDependencies": {
"@types/clipboardy": "^2.0.1",
"@types/node": "^20.2.5",
"@typescript-eslint/eslint-plugin": "^5.59.8",
"@typescript-eslint/parser": "^5.59.8",
"@vitejs/plugin-vue": "^4.2.3",
"@vitest/coverage-c8": "^0.31.3",
"@vitest/ui": "^0.31.3",
"electron": "^24.4.1",
"electron-builder": "^24.4.0",
"eslint": "^8.41.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-vue": "^9.14.1",
"eslint-plugin-vuetify": "^2.0.1",
"happy-dom": "^9.20.3",
"prettier": "^2.8.8",
"sass": "^1.62.1",
"typescript": "^5.0.4",
"vite": "^4.3.9",
"vite-plugin-electron": "^0.11.2",
"vite-plugin-electron-renderer": "^0.14.5",
"vite-plugin-eslint": "^1.8.1",
"vitest": "^0.31.3",
"vue": "^3.3.4",
"vue-cli-plugin-vuetify": "^2.5.8",
"vue-tsc": "^1.6.5",
"vuetify-loader": "^2.0.0-alpha.9"
},
"dependencies": {
"@electron/remote": "^2.0.9",
"@mdi/font": "^7.2.96",
"@types/webfontloader": "^1.6.35",
"@vue/test-utils": "^2.3.2",
"@vueuse/components": "^10.1.2",
"@vueuse/core": "^10.1.2",
"clipboardy": "^3.0.0",
"randexp": "^0.5.3",
"roboto-fontface": "^0.10.0",
"tesseract.js": "^3.0.3",
"tplant": "^3.1.0",
"vue-router": "^4.2.2",
"vue3-drag-resize": "^2.0.5",
"vuetify": "^3.3.2"
}
}