-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
48 lines (48 loc) · 1.13 KB
/
package.json
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
{
"name": "react-fast-accordion",
"description": "High performance 0 dependencies accordion for React",
"author": "Shivam <[email protected]>",
"private": false,
"repository": "github:ShivamJoker/React-fast-accordion",
"version": "2.0.10",
"keywords": [
"react ",
"accordion ",
"library ",
"component-library ",
"react-accordion"
],
"licence": "GPL-3.0",
"main": "./dist/index.js",
"module": "./src/index.tsx",
"files": [
"src",
"dist"
],
"scripts": {
"dev": "vite",
"prepublishOnly": "tsup && npm version patch",
"build": "tsup",
"preview": "vite preview"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@faker-js/faker": "^7.3.0",
"@swc/core": "^1.2.215",
"@types/react": "^18.0.15",
"@types/react-dom": "^18.0.6",
"@vitejs/plugin-react": "^2.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rollup-plugin-typescript2": "^0.32.1",
"tslib": "^2.4.0",
"tsup": "^6.1.3",
"typescript": "^4.7.4",
"vite": "^3.0.0",
"vite-dts": "^1.0.4",
"vite-plugin-dts": "^1.3.0"
}
}