-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
69 lines (69 loc) · 2.42 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
{
"name": "mc-docu",
"displayName": "mc-docu",
"productName": "mc-docu",
"version": "0.10.0",
"description": "A Mirth Connect configuration documentation tool",
"main": "./out/main/index.js",
"author": "Thomas Loy",
"homepage": "https://github.com/con-cis/mc-docu",
"repository": {
"url": "https://github.com/con-cis/mc-docu"
},
"scripts": {
"format": "prettier --write .",
"test": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "eslint . --ext .js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts,.vue --fix",
"typecheck:node": "tsc --noEmit -p tsconfig.node.json --composite false",
"typecheck:web": "vue-tsc --noEmit -p tsconfig.web.json --composite false",
"typecheck": "npm run typecheck:node && npm run typecheck:web",
"dev:env": "cross-env NODE_ENV=development DEBUG=true",
"dev": "npm run dev:env && electron-vite dev",
"build:env": "cross-env NODE_ENV=production",
"build": "npm run typecheck && npm run build:env && electron-vite build",
"start": "npm run build:env && electron-vite preview",
"build:win": "npm run build && electron-builder --win --config",
"build:mac": "npm run build && electron-builder --mac --config",
"build:linux": "npm run build && electron-builder --linux --config",
"postinstall": "electron-builder install-app-deps"
},
"dependencies": {
"@electron-toolkit/preload": "^3.0.1",
"@electron-toolkit/utils": "^3.0.0",
"electron-updater": "^6.3.9",
"vuetify": "^3.7.2",
"xml2js": "^0.6.2"
},
"devDependencies": {
"@electron-toolkit/eslint-config": "^1.0.2",
"@electron-toolkit/eslint-config-ts": "^2.0.0",
"@electron-toolkit/tsconfig": "^1.0.1",
"@mdi/font": "^7.4.47",
"@rushstack/eslint-patch": "^1.10.4",
"@types/node": "^22.7.5",
"@types/xml2js": "^0.4.14",
"@typescript-eslint/eslint-plugin": "^8.12.2",
"@vitejs/plugin-vue": "^5.1.4",
"@vue/eslint-config-prettier": "^10.0.0",
"@vue/eslint-config-typescript": "^14.1.3",
"cross-env": "^7.0.3",
"electron": "^33.0.2",
"electron-builder": "^25.1.8",
"electron-vite": "^2.3.0",
"eslint": "^9.13.0",
"eslint-plugin-vue": "^9.29.0",
"less": "^4.2.0",
"prettier": "^3.3.3",
"typescript": "^5.6.3",
"vite": "^5.4.8",
"vite-tsconfig-paths": "^5.0.1",
"vitest": "^2.1.2",
"vue": "^3.5.12",
"vue-tsc": "^2.1.6"
},
"license": "GPLv3",
"keywords": [
"mirth connect"
]
}