-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
133 lines (133 loc) · 4.05 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
{
"$schema": "https://json.schemastore.org/package.json",
"name": "pip-boya",
"version": "0.6.3",
"private": true,
"description": "Fallout76 Pip-boy Application",
"author": {
"name": "Logue",
"email": "logue@hotmail.co.jp",
"url": "https://logue.dev/"
},
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint",
"build:report": "vue-cli-service build --report",
"electron:build": "vue-cli-service electron:build",
"electron:serve": "vue-cli-service electron:serve",
"gts:check": "gts check ./src/**/*.{js,jsx,ts,tsx,vue}",
"gts:clean": "gts clean",
"gts:fix": "gts fix ./src/**/*.{js,jsx,ts,tsx,vue}",
"gts:lint": "gts lint ./src/**/*.{js,jsx,ts,tsx,vue}",
"i18n:report": "vue-cli-service i18n:report --src './src/**/*.?(js|ts|vue)' --locales './src/locales/**/*.json'",
"lint:style": "vue-cli-service lint:style",
"postinstall": "electron-builder install-app-deps",
"posttest": "npm.cmd run lint",
"postuninstall": "electron-builder install-app-deps",
"pretest": "npm.cmd run build"
},
"main": "background.js",
"dependencies": {
"axios": "^0.28.0",
"core-js": "^3.17.3",
"mutationobserver-shim": "^0.3.7",
"vue": "^2.6.14",
"vue-class-component": "^7.2.6",
"vue-country-flag": "^2.2.0",
"vue-electron": "^1.0.6",
"vue-force-next-tick": "^1.1.0",
"vue-gravatar": "^1.4.1",
"vue-gtag": "^1.16.1",
"vue-i18n": "^8.25.1",
"vue-nl2br": "^0.1.2",
"vue-property-decorator": "^9.1.2",
"vue-router": "^3.5.2",
"vuelayers": "^0.11.36",
"vuetify": "^2.6.10",
"vuex": "^3.6.2",
"vuex-persist": "^3.1.3",
"vuex-persist-indexeddb": "^0.1.3"
},
"devDependencies": {
"@fontsource/noto-sans-jp": "^4.5.0",
"@mdi/font": "^6.1.95",
"@microsoft/tsdoc": "^0.13.2",
"@samhammer/vue-cli-plugin-stylelint": "^2.1.0",
"@types/electron-devtools-installer": "^2.2.0",
"@types/geojson": "^7946.0.8",
"@types/node": "^16.9.1",
"@types/ol": "^5.3.0",
"@typescript-eslint/eslint-plugin": "^4.31.1",
"@typescript-eslint/parser": "^4.31.1",
"@vue/cli-plugin-babel": "^4.5.13",
"@vue/cli-plugin-eslint": "^4.5.13",
"@vue/cli-plugin-router": "^4.5.13",
"@vue/cli-plugin-typescript": "^4.5.13",
"@vue/cli-plugin-vuex": "^4.5.13",
"@vue/cli-service": "^4.5.13",
"@vue/compiler-sfc": "^3.2.11",
"@vue/eslint-config-prettier": "^6.0.0",
"@vue/eslint-config-typescript": "^7.0.0",
"electron": "^22.3.25",
"electron-builder": "^22.11.7",
"electron-devtools-installer": "^3.2.0",
"eslint": "<7.0.0",
"eslint-config-vuetify": "^0.6.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.4.1",
"eslint-plugin-tsdoc": "^0.2.14",
"eslint-plugin-vue": "^7.18.0",
"gts": "^3.1.0",
"lint-staged": "^11.1.2",
"prettier": "^2.4.1",
"sass": "<1.33.00",
"sass-loader": "^10.2.0",
"sass-resources-loader": "^2.2.4",
"stylelint": "^13.13.1",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-standard": "^20.0.0",
"stylelint-prettier": "^1.2.0",
"terser-webpack-plugin": "^4.2.3",
"ts-loader": "^8.3.0",
"typescript": ">=3.3.1 <4.2.0",
"vue-cli-plugin-electron-builder": "~2.1.1",
"vue-cli-plugin-vuetify": "^2.4.2",
"vue-template-compiler": "^2.6.14",
"vuetify-loader": "^1.7.3"
},
"bugs": {
"url": "https://github.com/logue/Pip-BoyA/issues"
},
"engines": {
"node": ">=10"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"homepage": "https://www.nexusmods.com/fallout76/mods/697",
"keywords": [
"fo76 ",
"fallout-76",
"mappalachia",
"vue",
"vuetify",
"vuelayers",
"electron"
],
"license": "MIT",
"lint-staged": {
"*.{js,jsx,vue,ts,tsx}": [
"vue-cli-service lint",
"git add"
],
"*.{vue,htm,html,css,sss,less,scss}": [
"vue-cli-service lint:style",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/logue/Pip-BoyA.git"
}
}