-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.18 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 2.18 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
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "svelte",
"private": true,
"version": "0.0.1",
"type": "module",
"imports": {
"#lib": "./src/lib",
"#lib/*": "./src/lib/*"
},
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "wrangler dev .svelte-kit/cloudflare/_worker.js --port 4173",
"deploy": "vite build && wrangler deploy",
"test": "vitest run",
"prepare": "svelte-kit sync || echo ''",
"check": "wrangler types --check || svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "prettier --check . && eslint .",
"format": "prettier --write .",
"gen": "wrangler types"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@sveltejs/adapter-cloudflare": "next",
"@sveltejs/kit": "next",
"@sveltejs/vite-plugin-svelte": "^7.3.0",
"@tailwindcss/vite": "^4.3.3",
"@types/node": "^26.4.0",
"eslint": "^10.9.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-svelte": "^3.23.0",
"globals": "^17.11.0",
"prettier": "^3.9.6",
"prettier-plugin-svelte": "^4.1.0",
"prettier-plugin-tailwindcss": "^0.8.1",
"svelte": "^5.57.0",
"svelte-check": "^4.7.6",
"tailwindcss": "^4.3.3",
"typescript": "^6.0.3",
"typescript-eslint": "^8.68.0",
"vite": "^8.2.2",
"vitest": "^4.1.11",
"wrangler": "^4.127.1"
},
"dependencies": {
"@codemirror/autocomplete": "^6.20.3",
"@codemirror/commands": "^6.11.0",
"@codemirror/lang-json": "^6.0.2",
"@codemirror/language": "^6.12.4",
"@codemirror/lint": "^6.9.7",
"@codemirror/state": "^6.7.1",
"@codemirror/view": "^6.43.9",
"@internationalized/number": "^3.6.7",
"@kartore-internal/github-adapter": "0.9.1",
"@kartore/file-adapter": "0.7.1",
"@kartore/glyphore": "^0.2.0",
"@kartore/spritore": "^0.2.0",
"@maplibre/maplibre-gl-style-spec": "^26.4.1",
"@tanstack/svelte-query": "^6.1.48",
"bits-ui": "^2.19.0",
"clsx": "^2.1.1",
"fflate": "^0.8.3",
"maplibre-gl": "^6.6.0",
"phosphor-svelte": "^3.1.0",
"svelte-maplibre-gl": "^2.2.1",
"tailwind-merge": "^3.6.0"
},
"packageManager": "pnpm@12.1.0",
"devEngines": {
"runtime": {
"name": "node",
"version": "26.5.0",
"onFail": "download"
}
}
}