-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.74 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.74 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
{
"name": "craftstats",
"version": "1.0.0",
"description": "Minecraft servers tracker built on Cloudflare Workers with Vue.js.",
"license": "MIT",
"author": "MrMicky",
"type": "module",
"scripts": {
"dev": "vite",
"build": "run-p type-check \"build-only {@}\" --",
"preview": "npm run build && wrangler dev",
"build-only": "vite build",
"type-check": "vue-tsc --build",
"deploy": "npm run build && wrangler deploy",
"lint": "run-s lint:*",
"lint:oxlint": "oxlint . --fix",
"lint:eslint": "eslint . --fix --cache",
"format": "oxfmt ."
},
"dependencies": {
"base64-js": "^1.5.1",
"bootstrap": "^5.3.0",
"highcharts": "^12.1.2",
"itty-fetcher": "^1.0.10",
"itty-router": "^5.0.17",
"vue": "^3.5.32",
"vue-i18n": "^11.1.0",
"vue-router": "^5.0.4"
},
"devDependencies": {
"@cloudflare/vite-plugin": "^1.40.0",
"@cloudflare/workers-types": "^4.0.0",
"@intlify/unplugin-vue-i18n": "^11.2.3",
"@tsconfig/node24": "^24.0.4",
"@types/node": "^24.13.1",
"@vitejs/plugin-vue": "^6.0.6",
"@vue/eslint-config-typescript": "^14.7.0",
"@vue/tsconfig": "^0.9.1",
"eslint": "^10.2.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-oxlint": "~1.60.0",
"eslint-plugin-vue": "~10.8.0",
"jiti": "^2.6.1",
"npm-run-all2": "^8.0.4",
"oxfmt": "^0.45.0",
"oxlint": "~1.60.0",
"sass": "^1.76.0",
"typescript": "~6.0.0",
"vite": "^8.0.8",
"vite-plugin-vue-devtools": "^8.1.1",
"vue-tsc": "^3.2.6",
"wrangler": "^4.98.0"
},
"engines": {
"node": "^20.19.0 || >=22.12.0"
},
"allowScripts": {
"@parcel/watcher": true,
"esbuild": true,
"fsevents": true,
"sharp": true,
"workerd": true
}
}