-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.54 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
49
50
51
52
53
54
55
56
{
"name": "react-tab-state",
"version": "1.0.2",
"description": "state-aware tab components in react",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/esm/index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "next dev",
"build:esm": "tsc",
"build": "yarn build:esm && yarn build:cjs",
"build:cjs": "rollup -c"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kaf-lamed-beyt/react-tab.git"
},
"keywords": [
"react",
"tabs",
"chakra-ui",
"state",
"next/router"
],
"author": "kaf-lamed-beyt",
"license": "MIT",
"bugs": {
"url": "https://github.com/kaf-lamed-beyt/react-tab/issues"
},
"homepage": "https://github.com/kaf-lamed-beyt/react-tab#readme",
"dependencies": {
"@types/node": "^20.3.0",
"@types/react": "^18.2.11",
"babel-plugin-styled-components": "^2.1.3",
"next": "^13.4.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rollup": "^3.25.1",
"semantic-release": "^23.0.2",
"styled-components": "^6.0.0-rc.3",
"typescript": "^5.1.3"
},
"type": "module",
"devDependencies": {
"@babel/preset-react": "^7.22.5",
"@babel/preset-typescript": "^7.22.5",
"@rollup/plugin-node-resolve": "^15.1.0",
"@rollup/plugin-terser": "^0.4.3",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-generate-package-json": "^3.2.0",
"rollup-plugin-styles": "^4.0.0",
"rollup-plugin-terser": "^7.0.2"
}
}