-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.65 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.65 KB
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
{
"name": "jei-web",
"version": "0.0.1",
"description": "Just Enough Items but Running in web",
"productName": "JEI Web",
"author": "AndreaFrederica <andreafrederica@outlook.com>",
"type": "module",
"private": true,
"scripts": {
"gen:about": "node scripts/generate-about-md.mjs",
"gen:items-lite": "node scripts/generate-items-lite-indexes.mjs",
"lint": "eslint -c ./eslint.config.js \"./src*/**/*.{ts,js,cjs,mjs,vue}\"",
"format": "prettier --write \"**/*.{js,ts,vue,scss,html,md,json}\" --ignore-path .gitignore",
"test": "vitest",
"test:run": "vitest run",
"test:ui": "vitest --ui",
"test:coverage": "vitest --coverage",
"typecheck:scripts": "tsc -p tsconfig.scripts.json",
"sync:temp": "node scripts/sync-temp-files.mjs",
"convert:wiki": "node scripts/convert-wiki-local.mjs",
"extract:wiki:methods": "node scripts/extract-skland-methods.mjs",
"build:skland-pack": "node scripts/generate-skland-pack.mjs",
"crawl:wiki": "node scripts/crawl-skland-wiki.mjs",
"proxy:skland": "node scripts/skland-proxy/server.js",
"crawl:wiki:oneclick": "node scripts/crawl-wiki-oneclick.mjs",
"predev": "pnpm run gen:about && pnpm run gen:items-lite",
"dev": "quasar dev",
"prebuild": "pnpm run gen:about && pnpm run gen:items-lite",
"build": "quasar build",
"build:cloudflare": "git fetch --unshallow 2>/dev/null || true && pnpm run build",
"postinstall": "pnpm run gen:about && quasar prepare"
},
"dependencies": {
"@quasar/extras": "^1.16.4",
"@vue-flow/background": "^1.3.2",
"@vue-flow/controls": "^1.1.3",
"@vue-flow/core": "^1.48.2",
"@vue-flow/minimap": "^1.5.4",
"axios": "^1.2.1",
"jszip": "^3.10.1",
"markdown-it": "^14.1.0",
"pinia": "^3.0.1",
"pinyin-pro": "^3.28.0",
"quasar": "^2.16.0",
"vue": "^3.5.22",
"vue-i18n": "^11.0.0",
"vue-router": "^4.0.12",
"vuedraggable": "^4.1.0"
},
"devDependencies": {
"@eslint/js": "^9.14.0",
"@intlify/unplugin-vue-i18n": "^4.0.0",
"@quasar/app-vite": "^2.1.0",
"@types/markdown-it": "^14.1.2",
"@types/node": "^20.5.9",
"@vitest/ui": "^2.1.8",
"@vue/eslint-config-prettier": "^10.1.0",
"@vue/eslint-config-typescript": "^14.4.0",
"autoprefixer": "^10.4.2",
"eslint": "^9.14.0",
"eslint-plugin-vue": "^10.4.0",
"globals": "^16.4.0",
"jsdom": "^25.0.1",
"prettier": "^3.3.3",
"typescript": "^5.9.2",
"vite-plugin-checker": "^0.11.0",
"vitest": "^2.1.9",
"vue-eslint-parser": "^10.2.0",
"vue-tsc": "^3.0.7"
},
"engines": {
"node": "^28 || ^26 || ^24 || ^22 || ^20",
"npm": ">= 6.13.4",
"yarn": ">= 1.21.1"
}
}