-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.22 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.22 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
{
"name": "@stevent-team/react-party",
"version": "0.3.3",
"description": "Canvas confetti effect for React 🎉",
"keywords": [
"react",
"canvas",
"confetti",
"party"
],
"license": "MIT",
"repository": "github:stevent-team/react-party",
"type": "module",
"files": [
"dist"
],
"main": "./dist/react-party.umd.cjs",
"types": "./dist/react-party.d.ts",
"module": "./dist/react-party.js",
"exports": {
".": {
"import": "./dist/react-party.js",
"require": "./dist/react-party.umd.cjs"
}
},
"scripts": {
"build": "vite build",
"dev": "vite dev",
"build:sample": "vite build --config sample.vite.config.js",
"ci:release": "yarn build && yarn changeset publish"
},
"devDependencies": {
"@changesets/cli": "^2.26.2",
"@types/react": "^18.2.28",
"@types/react-dom": "^18.2.13",
"@vitejs/plugin-react": "^4.1.0",
"eslint": "^8.51.0",
"eslint-plugin-react": "^7.33.2",
"leva": "^0.9.35",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.16.0",
"typescript": "^5.2.2",
"vite": "^4.4.11",
"vite-plugin-dts": "^3.6.0"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
}
}