This repository was archived by the owner on Mar 1, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.71 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.71 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
{
"name": "dk2-loadout",
"type": "module",
"version": "1.6.0",
"author": "VChet",
"license": "AGPL-3.0-or-later",
"repository": {
"type": "git",
"url": "git+https://github.com/VChet/dk2-loadout.git"
},
"scripts": {
"preinstall": "npx only-allow pnpm",
"build": "vite build",
"dev": "vite",
"start": "vite preview",
"check": "svelte-check --tsconfig ./tsconfig.json",
"lint:js": "eslint .",
"lint:js:fix": "npm run lint:js -- --fix",
"lint:css": "stylelint **/*{.scss,.svelte}",
"lint:css:fix": "npm run lint:css -- --fix",
"lint:all": "npm run check && npm run lint:js && npm run lint:css",
"test": "vitest --run",
"update-data": "tsx ./src/data/parseData.ts",
"worker:deploy": "wrangler deploy --config ./cloudflare-worker/wrangler.toml"
},
"dependencies": {
"@sveltejs/vite-plugin-svelte": "^5.0.3",
"fast-xml-parser": "^5.1.0",
"vite": "^6.2.4"
},
"devDependencies": {
"@antfu/eslint-config": "^4.11.0",
"@stylistic/stylelint-plugin": "^3.1.2",
"@total-typescript/ts-reset": "^0.6.1",
"@tsconfig/svelte": "^5.0.4",
"@types/node": "^22.13.17",
"eslint": "^9.23.0",
"eslint-plugin-svelte": "^3.5.0",
"mime-type": "^5.0.3",
"postcss-html": "^1.8.0",
"postcss-scss": "^4.0.9",
"sass-embedded": "^1.86.1",
"stylelint": "^16.17.0",
"stylelint-config-recess-order": "^6.0.0",
"stylelint-config-standard-scss": "^14.0.0",
"stylelint-declaration-block-no-ignored-properties": "^2.8.0",
"stylelint-order": "^6.0.4",
"svelte": "^5.25.6",
"svelte-check": "^4.1.5",
"tslib": "^2.8.1",
"tsx": "^4.19.3",
"typescript": "^5.8.2",
"vitest": "^3.1.1",
"wrangler": "^4.6.0"
}
}