-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.93 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.93 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
{
"name": "999",
"version": "0.0.1",
"private": true,
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"prepare": "svelte-kit sync",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "prettier --check . && eslint . && npm run xml-length-check",
"format": "prettier --write .",
"xml-length-check": "echo 'Checking XML line length...' && ! grep -n -E '^.{101,}' $(find src -name *.xml -o -name *.xsl) | grep -v -E 'https?:' && echo 'OK.'"
},
"scriptsComments": {
"xml-length-check": [
"Crude XML formatting check.",
"Checks the line length, and if it’s over 100, it has likely not been formatted by Oxygen XML",
"Lines containing URLs are ignored, as they cannot be wrapped",
"This is meant as a guardrail against obvious formatting errors"
]
},
"devDependencies": {
"@eslint/compat": "^1.2.5",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.19.0",
"@sveltejs/adapter-static": "^3.0.1",
"@sveltejs/kit": "^2.53.0",
"@sveltejs/vite-plugin-svelte": "^4.0.4",
"@tailwindcss/vite": "^4.0.0",
"@types/eslint": "^9.6.1",
"@types/node": "^24.0.1",
"@typescript-eslint/eslint-plugin": "^8.22.0",
"@typescript-eslint/parser": "^8.22.0",
"embla-carousel-svelte": "^8.5.2",
"embla-carousel-wheel-gestures": "^8.0.1",
"eslint": "^9.19.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-svelte": "^2.45.1",
"globals": "^15.14.0",
"prettier": "^3.4.2",
"prettier-plugin-organize-imports": "^4.1.0",
"prettier-plugin-svelte": "^3.2.6",
"prettier-plugin-tailwindcss": "^0.6.11",
"svelte": "^5.19.4",
"svelte-check": "^4.1.4",
"tailwindcss": "^4.0.0",
"tslib": "^2.4.1",
"typescript-eslint": "^8.22.0",
"vite": "^5.4.4"
},
"type": "module"
}