-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.73 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.73 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
{
"name": "@hdcodedev/snowfall",
"version": "1.0.17",
"description": "Realistic snowfall effect for React with physics-based accumulation on surfaces. Features melting, wind, and smart surface detection.",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"lint": "eslint src demo",
"prepublishOnly": "npm run build"
},
"keywords": [
"react",
"snow",
"snowfall",
"canvas",
"winter",
"physics",
"animation",
"holiday"
],
"author": "hdcodedev",
"repository": {
"type": "git",
"url": "https://github.com/hdcodedev/snowfall.git"
},
"bugs": {
"url": "https://github.com/hdcodedev/snowfall/issues"
},
"homepage": "https://github.com/hdcodedev/snowfall#readme",
"license": "Apache-2.0",
"peerDependencies": {
"react": "^18.0.0 || ^19.0.0",
"react-dom": "^18.0.0 || ^19.0.0"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"eslint": "^9.39.2",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"globals": "^17.3.0",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"tsup": "^8.3.5",
"typescript": "^6.0.2",
"typescript-eslint": "^8.50.1"
}
}