-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
61 lines (61 loc) · 1.83 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
{
"name": "snowrunner-xml-editor-desktop",
"productName": "SnowRunner-XML-Editor",
"version": "1.0.0",
"description": "Allows you to visually edit the game's XML files.",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/VerZsuT/SnowRunner-XML-Editor-Desktop.git"
},
"main": ".vite/build/index.js",
"scripts": {
"package": "electron-forge package --platform=win32 --arch=ia32",
"package-prod": "npm i && cross-env NODE_ENV=production electron-forge package --platform=win32 --arch=ia32",
"start": "cross-env NODE_ENV=development electron-forge start",
"lint": "eslint src/**",
"lint:fix": "npm run lint -- --fix",
"check": "tsc --project src/tsconfig.json --noEmit && vue-tsc --project src/tsconfig.json --noEmit"
},
"keywords": [],
"author": {
"name": "VerZsuT",
"email": "verzsut@gmail.com"
},
"license": "MIT",
"config": {
"forge": "./src/build-configs/forge.js"
},
"devDependencies": {
"@ant-design/icons-vue": "^7.0.1",
"@electron-forge/cli": "^7.3.1",
"@electron-forge/plugin-vite": "^7.3.1",
"@types/memoizee": "^0.4.11",
"@typescript-eslint/eslint-plugin": "^7.3.1",
"@typescript-eslint/parser": "^7.3.1",
"@vitejs/plugin-vue": "^5.0.4",
"ant-design-vue": "^4.1.2",
"cheerio": "^1.0.0-rc.12",
"cross-env": "^7.0.3",
"debounce": "^2.0.0",
"electron": "^29.1.5",
"emr-bridge": "^1.7.1",
"eslint": "^8.57.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-unicorn": "^51.0.1",
"eslint-plugin-vue": "^9.23.0",
"memoizee": "^0.4.15",
"pinia": "^2.1.7",
"sass": "^1.72.0",
"ts-node": "^10.9.2",
"tslib": "^2.6.2",
"typescript": "^5.4.3",
"vite": "^5.2.4",
"vite-plugin-static-copy": "^1.0.1",
"vue": "^3.4.21",
"vue-eslint-parser": "^9.4.2",
"vue-tsc": "^2.0.7",
"xml-formatter": "^3.6.2"
}
}