-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.76 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 1.76 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
{
"name": "astro-snowfall",
"type": "module",
"version": "1.0.2",
"license": "MIT",
"description": "A lightweight, performant canvas-based snowfall background animation component built with Astro and TypeScript.",
"author": {
"name": "fermeridamagni",
"email": "hello@magni.dev",
"url": "https://magni.dev"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fermeridamagni/astro-snowfall.git"
},
"homepage": "https://fermeridamagni.github.io/astro-snowfall",
"keywords": [
"astro-component",
"astro-snowfall",
"snowfall",
"snow",
"background",
"animation",
"canvas"
],
"files": [
"src/components/Snowfall.astro",
"src/lib/snowfall",
"LICENSE",
"README.md",
"package.json"
],
"exports": {
".": "./src/components/Snowfall.astro"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"scripts": {
"dev": "portless run astro dev",
"build": "npm run registry:build && astro build",
"registry:build": "npx shadcn@latest build",
"preview": "astro preview",
"fix": "ultracite fix",
"check": "ultracite check"
},
"dependencies": {
"@astrojs/react": "6.0.1",
"@astrojs/sitemap": "3.7.3",
"@lucide/astro": "^1.25.0",
"@magnidev/tailwindcss-utils": "^1.0.2",
"@tailwindcss/vite": "^4.3.3",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"astro": "7.1.1",
"lucide-react": "^1.25.0",
"motion": "^12.42.2",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"tailwind-variants": "^3.2.2",
"tailwindcss": "^4.3.3"
},
"devDependencies": {
"@biomejs/biome": "2.5.4",
"portless": "^0.15.4",
"ultracite": "7.9.4"
},
"packageManager": "bun@1.3.6"
}