-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.59 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.59 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
{
"name": "xylix.github.io",
"version": "0.0.1",
"scripts": {
"dev": "vite dev",
"build": "vite 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": "biome lint . && eslint \"src/**/*.svelte\"",
"format": "biome format --write .",
"test": "vitest run"
},
"pre-commit": [
"lint",
"check",
"test",
"build"
],
"devDependencies": {
"@biomejs/biome": "^2.4.7",
"@fontsource/fira-mono": "^4.5.10",
"@iconify/svelte": "^4.1.0",
"@neoconfetti/svelte": "^1.0.0",
"@sveltejs/adapter-auto": "^7.0.0",
"@sveltejs/adapter-static": "^3.0.10",
"@sveltejs/kit": "^2.49.1",
"@sveltejs/vite-plugin-svelte": "^6.2.1",
"@types/eslint": "8.56.0",
"@types/mdast": "^4.0.4",
"@types/node": "^25.5.0",
"@types/unist": "^3.0.3",
"@typescript-eslint/eslint-plugin": "^8.57.1",
"@typescript-eslint/parser": "^8.57.1",
"eslint": "^8.56.0",
"eslint-config-biome": "^1.8.4",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-svelte": "^2.45.1",
"mdsvex": "^0.12.6",
"pre-commit": "^1.2.2",
"prettier": "^3.1.1",
"prettier-plugin-svelte": "^3.2.6",
"remark-parse": "^11.0.0",
"svelte": "^5.45.5",
"svelte-check": "^4.3.4",
"tslib": "^2.8.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"unified": "^11.0.5",
"vite": "^7.2.6",
"vitest": "^4.1.1"
},
"type": "module",
"dependencies": {
"@fontsource/mona-sans": "^5.2.8",
"pixi.js": "^8.1.6"
},
"engines": {
"node": ">=22.21.1 <23",
"npm": ">=10.9.4 <11"
}
}