-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.47 KB
/
package.json
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
{
"name": "float-view",
"private": true,
"license": "AGPL-3.0-only",
"version": "0.10.6",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"checks": "concurrently --group --prefix-colors=auto --names --kill-others-on-fail npm:types:ts npm:types:svelte npm:tests",
"types:ts": "tsc -p tsconfig.json --noEmit",
"types:svelte": "svelte-check --tsconfig tsconfig.json",
"tests": "vitest --config vitest.config.ts",
"format": "prettier --write --list-different .",
"format:check": "prettier --check .",
"ci:bump": "tsx scripts/bump.ts"
},
"devDependencies": {
"@sveltejs/vite-plugin-svelte": "^4.0.0-next.7",
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/svelte": "^5.2.1",
"@tsconfig/svelte": "^5.0.4",
"@types/leaflet": "^1.9.12",
"@types/papaparse": "^5.3.14",
"@types/semver": "^7.5.8",
"autoprefixer": "^10.4.20",
"concurrently": "^9.0.1",
"jsdom": "^25.0.0",
"postcss": "^8.4.45",
"prettier": "^3.3.3",
"prettier-plugin-svelte": "^3.2.6",
"semver": "^7.6.3",
"svelte": "^5.0.0-next.243",
"svelte-check": "^3.8.6",
"tailwindcss": "^3.4.11",
"tslib": "^2.6.3",
"tsx": "^4.19.1",
"typescript": "^5.5.3",
"vite": "^5.4.1",
"vitest": "^2.1.0",
"vitest-canvas-mock": "^0.3.3"
},
"dependencies": {
"fflate": "^0.8.2",
"leaflet": "^1.9.4",
"papaparse": "^5.4.1",
"zod": "^3.23.8"
}
}