-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
82 lines (82 loc) · 2.71 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
{
"name": "heroes3tools",
"type": "module",
"version": "2.5.1",
"private": true,
"description": "Web tools to make playing Heroes of Might and Magic III: Horn of The Abyss easier: damage calculator, magic calculator, creature library for simplify calculations in Heroes of Might and Magic III: Horn of The Abyss",
"license": "MIT",
"homepage": "https://heroes3tools.netlify.app/",
"repository": {
"type": "git",
"url": "git+https://github.com/rudnovd/heroes3tools.git"
},
"bugs": "https://github.com/rudnovd/heroes3tools/issues",
"engines": {
"node": ">=22.12.0"
},
"scripts": {
"preinstall": "npx only-allow pnpm",
"start": "vite",
"build": "cross-env NODE_ENV=production pnpm run lint && pnpm run stylelint && vue-tsc --noEmit && vite build",
"serve": "vite preview",
"test": "vitest",
"lint": "cross-env NODE_ENV=production eslint .",
"lint:fix": "cross-env NODE_ENV=production eslint .",
"stylelint": "stylelint '**/*{.scss,.vue}'",
"stylelint:fix": "stylelint '**/*{.scss,.vue}' --fix",
"commit": "npx git-cz",
"localazy:upload": "localazy upload -k localazy.keys.json",
"localazy:download": "localazy download -k localazy.keys.json",
"prerelease": "pnpm run build",
"release": "standard-version"
},
"dependencies": {
"@unhead/vue": "^1.11.18",
"@vueuse/core": "^12.5.0",
"@vueuse/shared": "^12.5.0",
"pinia": "^2.3.1",
"vue": "^3.5.13",
"vue-i18n": "^11.1.0",
"vue-router": "^4.5.0"
},
"devDependencies": {
"@antfu/eslint-config": "^4.1.1",
"@commitlint/cli": "^19.7.1",
"@commitlint/config-conventional": "^19.7.1",
"@intlify/unplugin-vue-i18n": "^6.0.3",
"@localazy/cli": "^1.7.15",
"@unhead/addons": "^1.11.18",
"@vitejs/plugin-vue": "^5.2.1",
"@vue/test-utils": "^2.4.6",
"cross-env": "^7.0.3",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^9.19.0",
"globals": "^15.14.0",
"husky": "^9.1.7",
"sass": "^1.83.4",
"standard-version": "^9.5.0",
"stylelint": "^16.14.1",
"stylelint-config-recess-order": "^6.0.0",
"stylelint-config-recommended-scss": "^14.1.0",
"stylelint-config-recommended-vue": "^1.6.0",
"stylelint-scss": "^6.11.0",
"typescript": "5.7.3",
"vite": "^6.1.0",
"vite-plugin-pwa": "^0.21.1",
"vitest": "^3.0.5",
"vue-tsc": "^2.2.0",
"workbox-build": "^7.3.0",
"workbox-cacheable-response": "^7.3.0",
"workbox-core": "^7.3.0",
"workbox-expiration": "^7.3.0",
"workbox-precaching": "^7.3.0",
"workbox-routing": "^7.3.0",
"workbox-strategies": "^7.3.0",
"workbox-window": "^7.3.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}