-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.64 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.64 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
{
"name": "outerwildsmods-svelte",
"version": "1.0.0",
"type": "module",
"private": true,
"devDependencies": {
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.35.0",
"@sveltejs/adapter-static": "3.0.9",
"@sveltejs/kit": "2.42.1",
"@sveltejs/vite-plugin-svelte": "6.2.0",
"@types/gtag.js": "0.0.20",
"@types/lodash-es": "4.17.12",
"@typescript-eslint/eslint-plugin": "8.44.0",
"@typescript-eslint/parser": "8.44.0",
"autoprefixer": "10.4.21",
"eslint": "9.35.0",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-svelte": "3.12.3",
"github-slugger": "2.0.0",
"globals": "^16.4.0",
"globby": "14.1.0",
"hast-util-from-html": "^2.0.3",
"lodash-es": "4.17.21",
"postcss": "8.5.6",
"prettier": "3.6.2",
"prettier-plugin-svelte": "3.4.0",
"rehype-raw": "7.0.0",
"rehype-sanitize": "6.0.0",
"rehype-slug": "6.0.0",
"rehype-stringify": "10.0.1",
"remark": "15.0.1",
"remark-gfm": "4.0.1",
"remark-parse": "11.0.0",
"remark-rehype": "11.1.2",
"sharp": "0.34.4",
"svelte": "5.39.0",
"svelte-check": "4.3.1",
"svelte-eslint-parser": "1.3.2",
"tailwindcss": "3.4.17",
"tslib": "2.8.1",
"typescript": "5.9.2",
"unified": "11.0.5",
"unist-util-visit": "5.0.0",
"vite": "7.1.5"
},
"scripts": {
"dev": "vite dev --host",
"build": "vite build && npm run post:build",
"preview": "vite preview",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "eslint .",
"format": "prettier --write .",
"post:build": "node post-build.mjs"
},
"engines": {
"node": ">=20",
"npm": ">=10"
}
}