-
Notifications
You must be signed in to change notification settings - Fork 38
/
package.json
73 lines (73 loc) · 1.93 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
{
"name": "msfs2020-map-enhancement",
"author": {
"name": "He Sicong"
},
"description": "Microsoft Flight Simulator 2020 map enhancement tool",
"version": "5.0.9",
"main": "dist/main/index.cjs",
"license": "GPL",
"scripts": {
"dev": "node scripts/watch.mjs",
"prebuild": "vue-tsc --noEmit --p packages/renderer/tsconfig.json && node scripts/build.mjs",
"build": "electron-builder",
"release": "electron-builder --publish always",
"init": "git config core.hooksPath .git/hooks/ && rm -rf .git/hooks && npx simple-git-hooks",
"test:e2e": "npx playwright test",
"test:e2e:headless": "npx playwright test --headed"
},
"engines": {
"node": ">=14.17.0"
},
"devDependencies": {
"@playwright/test": "^1.22.2",
"@tailwindcss/typography": "^0.5.2",
"@types/adm-zip": "^0.5.0",
"@vitejs/plugin-vue": "^2.1.0",
"electron": "18.2.0",
"electron-builder": "^23.0.9",
"nano-staged": "^0.8.0",
"postcss": "^8.4.13",
"simple-git-hooks": "^2.8.0",
"tailwindcss": "^3.0.23",
"typescript": "^4.6.3",
"vite": "^2.9.1",
"vite-plugin-electron": "^0.4.3",
"vite-plugin-resolve": "^2.0.1",
"vue": "^3.2.37",
"vue-tsc": "^0.31.1"
},
"env": {
"VITE_DEV_SERVER_HOST": "127.0.0.1",
"VITE_DEV_SERVER_PORT": 3344
},
"keywords": [
"electron",
"rollup",
"vite",
"vue3",
"vue"
],
"dependencies": {
"@electron/remote": "^2.0.8",
"adm-zip": "^0.5.9",
"compare-versions": "^4.1.3",
"daisyui": "^2.15.3",
"dns": "^0.2.2",
"electron-log": "^4.4.1",
"electron-store": "^8.0.1",
"electron-updater": "^4.6.1",
"got": "^11.8.3",
"hpagent": "^1.0.0",
"lodash": "^4.17.21",
"mitt": "^3.0.0",
"moment": "^2.29.3",
"pinia": "^2.0.13",
"tcp-port-used": "^1.0.2",
"uuid": "^8.3.2"
},
"repository": {
"type": "git",
"url": "https://github.com/derekhe/msfs2020-map-enhancement"
}
}