-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.58 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.58 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
{
"name": "@tiagohm/nebulosa-app",
"description": "The complete integrated solution for all of your astronomical imaging needs.",
"version": "0.2.0",
"private": true,
"type": "module",
"main": "main.ts",
"module": "main.ts",
"scripts": {
"tailwind": "tailwindcss -m -i ./src/web/index.css -o dist/index.css",
"dev": "bun tailwind && bun --hot main.ts",
"prod": "bun tailwind && NODE_ENV=production bun --production main.ts",
"lint": "biome lint --write src/ tests/ bin/",
"format": "biome format --write src/ tests/ bin/",
"compile": "bun tailwind && NODE_ENV=production bun run build.ts",
"tsc": "tsgo --noEmit"
},
"author": {
"name": "Tiago Melo",
"email": "tiago.henrique.cco@gmail.com"
},
"license": "MIT",
"dependencies": {
"@heroui/react": "2.8.9",
"@tailwindcss/cli": "4.2.1",
"@uidotdev/usehooks": "2.4.1",
"@use-gesture/react": "10.3.1",
"bunshi": "2.2.0",
"clsx": "2.1.1",
"croner": "10.0.1",
"nebulosa": "github:tiagohm/nebulosa.ts",
"open": "11.0.0",
"react": "19.2.4",
"react-dom": "19.2.4",
"react-leaflet": "5.0.0",
"recharts": "3.8.0",
"tailwind-merge": "3.5.0",
"tailwindcss": "4.2.1",
"utility-types": "3.11.0",
"valtio": "2.3.1"
},
"devDependencies": {
"@biomejs/biome": "2.4.7",
"@types/bun": "1.3.10",
"@types/leaflet": "1.9.21",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"typescript": "beta",
"@typescript/native-preview": "latest"
},
"trustedDependencies": [
"@biomejs/biome",
"@heroui/shared-utils",
"nebulosa"
],
"overrides": {
"@typescript/native-preview": "7.0.0-dev.20260301.1"
}
}