-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.4 KB
/
Copy pathpackage.json
File metadata and controls
83 lines (83 loc) · 2.4 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
78
79
80
81
82
83
{
"name": "darkmap.phasi.space",
"version": "0.0.1",
"private": true,
"type": "module",
"description": "Public dark-sky planning map for astronomy, field sensing, cycling, hiking, and low-light logistics",
"homepage": "https://darkmap.phasi.space",
"repository": {
"type": "git",
"url": "https://github.com/Jesssullivan/darkmap.phasi.space.git"
},
"license": "MIT",
"packageManager": "pnpm@10.13.1",
"engines": {
"node": ">=22 <25"
},
"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": "prettier --check . && eslint .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "vitest",
"test:unit": "vitest run",
"test:coverage": "vitest run --coverage",
"test:e2e": "playwright test",
"bake:spectral": "tsx scripts/bake-spectral-lut.ts",
"bake:spectral-smarts-analog": "tsx scripts/bake-spectral-lut-smarts-analog.ts",
"bake:spectral-lbl": "tsx scripts/bake-spectral-lbl.ts"
},
"dependencies": {
"@effect/platform": "^0.96.0",
"@effect/platform-node": "^0.106.0",
"@fontsource/inter": "^5.2.8",
"@lucide/svelte": "^1.16.0",
"@tummycrypt/tinyvectors": "0.3.0",
"astronomy-engine": "^2.1.19",
"effect": "^3.21.2",
"maplibre-gl": "^5.5.0",
"satellite.js": "^5.0.0"
},
"devDependencies": {
"@playwright/test": "1.59.1",
"@skeletonlabs/skeleton": "4.15.2",
"@skeletonlabs/skeleton-svelte": "4.15.2",
"@sveltejs/adapter-node": "^5.5.4",
"@sveltejs/kit": "^2.60.1",
"@sveltejs/vite-plugin-svelte": "^7.1.2",
"@tailwindcss/vite": "^4.3.0",
"@tummycrypt/vite-plugin-a11y": "0.2.2",
"@tummycrypt/vite-plugin-skeleton-colors": "0.2.2",
"@types/node": "^22.19.19",
"@vitest/coverage-v8": "^4.1.6",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-svelte": "^3.17.0",
"globals": "^17.6.0",
"prettier": "^3.8.1",
"prettier-plugin-svelte": "^3.5.2",
"shiki": "^4.0.2",
"svelte": "^5.55.7",
"svelte-check": "^4.4.8",
"tailwindcss": "^4.3.0",
"tsx": "^4.22.1",
"typescript": "6.0.3",
"typescript-eslint": "^8.59.3",
"vite": "^8.0.13",
"vitest": "^4.1.6"
},
"pnpm": {
"overrides": {
"cookie": "0.7.2",
"fast-uri": "3.1.2"
},
"onlyBuiltDependencies": [
"@tailwindcss/oxide",
"esbuild"
]
}
}