-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
74 lines (74 loc) · 2.49 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
{
"name": "ddb-alchemy-tools-app",
"version": "0.2.2",
"description": "A tool to assist in converting D&D beyond content to Alchemy VTT content",
"author": "TJ Ferrell <[email protected]>",
"license": "MIT",
"main": "dist/main/index.js",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/dragonman117/ddb-alchemy-tools-app.git"
},
"bugs": {
"url": "https://github.com/dragonman117/ddb-alchemy-tools-app/issues"
},
"scripts": {
"dev": "vite",
"dev:debug": "vite -d",
"dev:debug:force": "vite -d --force",
"build": "npm run build:pre && electron-builder -wml",
"build:pre": "npm run format:fix && vue-tsc --noEmit && vite build",
"build:dir": "npm run build:pre && electron-builder --dir",
"build:mac": "npm run build:pre && CSC_IDENTITY_AUTO_DISCOVERY=false electron-builder --mac",
"build:linux": "npm run build:pre && electron-builder --linux",
"build:win": "npm run build:pre && electron-builder --windows",
"lint": "eslint --ext .js,.ts,.vue -f ./node_modules/eslint-friendly-formatter src",
"lint:fix": "eslint --ext .js,.ts,.vue -f ./node_modules/eslint-friendly-formatter --fix src",
"format": "prettier .",
"format:fix": "prettier . --write"
},
"engines": {
"node": ">=16.0.0"
},
"dependencies": {
"electron-store": "^8.1.0",
"moment": "^2.29.4",
"node-html-parser": "^6.1.5",
"pinia": "^2.0.32",
"turndown": "^7.1.1",
"vue": "^3.2.47",
"vue-i18n": "^9.2.2",
"vue-router": "^4.1.6",
"vuetify": "^3.1.7"
},
"devDependencies": {
"@mdi/font": "^7.1.96",
"@typescript-eslint/eslint-plugin": "^5.54.0",
"@typescript-eslint/parser": "^5.54.0",
"@vitejs/plugin-vue": "^4.0.0",
"@vitejs/plugin-vue-jsx": "^3.0.0",
"autoprefixer": "^10.4.14",
"electron": "^23.1.1",
"electron-builder": "^23.3.3",
"eslint": "^8.35.0",
"eslint-config-prettier": "^8.6.0",
"eslint-config-standard": "^17.0.0",
"eslint-friendly-formatter": "^4.0.1",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-vue": "^9.9.0",
"postcss": "^8.4.21",
"prettier": "^2.8.4",
"tailwindcss": "^3.2.7",
"typescript": "^4.9.5",
"vite": "^4.1.4",
"vite-plugin-electron": "^0.11.1",
"vite-plugin-electron-renderer": "^0.12.1",
"vite-plugin-eslint": "^1.8.1",
"vite-plugin-vuetify": "^1.0.2",
"vue-eslint-parser": "^9.1.0",
"vue-tsc": "^1.2.0"
}
}