-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 746 Bytes
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 746 Bytes
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
{
"name": "@H0N3YC4T/react-particles",
"version": "1.0.0",
"description": "Interactive React background particles",
"type": "module",
"main": "./dist/react-particles.umd.cjs",
"module": "./dist/react-particles.js",
"exports": {
".": {
"import": "./dist/react-particles.js",
"require": "./dist/react-particles.umd.cjs"
}
},
"scripts": {
"build": "vite build"
},
"keywords": ["react", "particles", "background", "animation", "canvas"],
"author": "Honeycat",
"license": "MIT",
"peerDependencies": {
"react": ">=18.0.0",
"react-dom": ">=18.0.0"
},
"devDependencies": {
"@vitejs/plugin-react": "^4.2.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"vite": "^5.2.0"
}
}