-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
114 lines (114 loc) · 3.18 KB
/
package.json
File metadata and controls
114 lines (114 loc) · 3.18 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "@openflygroup/snowfall",
"author": "Arthur Pechenkin <pechenkin.am@openfly.tech>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/OpenFlyGroup/snowfall.git"
},
"bugs": {
"url": "https://github.com/OpenFlyGroup/snowfall/issues"
},
"homepage": "https://openflygroup.github.io/snowfall/",
"private": false,
"version": "0.2.0",
"description": "Beautiful, customizable snowfall effects for React with accumulation and fading",
"keywords": [
"openfly",
"openflygroup",
"snowfall",
"react",
"snow",
"winter",
"canvas",
"animation",
"effect",
"particles"
],
"type": "module",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./styles": {
"default": "./dist/index.css"
},
"./package.json": "./package.json"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"dev": "tsup --watch",
"build": "tsup",
"demo": "vite -c vite.demo.config.ts",
"build:demo": "vite build -c vite.demo.config.ts",
"preview:demo": "vite preview -c vite.demo.config.ts --port 4173",
"lint": "eslint . --max-warnings=0",
"lint:fix": "eslint . --fix",
"type-check": "tsc --noEmit",
"test": "echo 'Tests are temporarily disabled'",
"test:watch": "echo 'Tests are temporarily disabled'",
"test:ui": "echo 'Tests are temporarily disabled'",
"test:coverage": "echo 'Tests are temporarily disabled'",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"ci": "npm run type-check && npm run lint && npm run build",
"prepublishOnly": "npm run ci"
},
"dependencies": {
"react": ">=18.0.0",
"react-dom": ">=18.0.0",
"zustand": ">=4.0.0"
},
"devDependencies": {
"@chromatic-com/storybook": "^4.1.3",
"@eslint/js": "^9.39.1",
"@storybook/addon-a11y": "^10.1.10",
"@storybook/addon-docs": "^10.1.10",
"@storybook/addon-vitest": "^10.1.10",
"@storybook/react-vite": "^10.1.10",
"@tailwindcss/postcss": "^4.1.18",
"@testing-library/dom": "^10.4.1",
"@types/node": "^25.0.3",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.1.1",
"@vitest/browser": "^3.2.4",
"eslint": "^9.39.1",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.4.26",
"eslint-plugin-storybook": "^10.1.10",
"gh-pages": "^6.3.0",
"globals": "^16.5.0",
"lucide-react": "^0.561.0",
"playwright": "^1.57.0",
"postcss": "^8.5.6",
"react-refresh": "^0.18.0",
"storybook": "^10.1.10",
"tailwindcss": "^4.1.18",
"tsup": "^8.5.1",
"typescript": "~5.9.3",
"typescript-eslint": "^8.46.4",
"vite": "^7.2.4",
"vite-plugin-dts": "^4.5.4",
"vite-plugin-lib-inject-css": "^2.2.2",
"vitest": "^3.2.4"
},
"peerDependencies": {
"react": ">=18.0.0",
"react-dom": ">=18.0.0",
"zustand": ">=4.0.0"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}