-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.18 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
{
"name": "@ericsison-dev/my-ui",
"version": "0.2.11",
"description": "This is a simple UI library",
"publishConfig": {
"registry": "https://npm.pkg.github.com/ericsison-dev"
},
"scripts": {
"build": "rollup -c",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"author": "Eric C. Sison",
"license": "MIT",
"peerDependencies": {
"react": ">=16"
},
"devDependencies": {
"@babel/core": "^7.19.6",
"@headlessui/react": "^1.7.3",
"@rollup/plugin-commonjs": "^23.0.2",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-typescript": "^9.0.2",
"@tanstack/react-table": "^8.5.15",
"@types/react": "^18.0.21",
"@types/react-dom": "^18.0.6",
"babel-loader": "^8.2.5",
"classnames": "^2.3.2",
"react-popper": "^2.3.0",
"rollup": "^3.2.3",
"rollup-plugin-dts": "^5.0.0",
"tailwindcss": "^3.2.1",
"tslib": "^2.4.0",
"typescript": "^4.8.4"
},
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"dependencies": {
"@floating-ui/react-dom-interactions": "^0.10.3",
"framer-motion": "^7.6.5"
}
}