-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
45 lines (45 loc) · 1.08 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
{
"name": "react-pill",
"version": "3.0.1",
"main": "dist/bundle.js",
"types": "dist/types/index.d.ts",
"type": "module",
"exports": {
".": {
"import": "./dist/bundle.js",
"require": "./dist/bundle.js",
"types": "./dist/types/index.d.ts"
}
},
"files": [
"dist",
"README.md"
],
"scripts": {
"build": "rollup -c",
"build:types": "tsc --emitDeclarationOnly",
"prepare": "npm run build && npm run build:types"
},
"peerDependencies": {
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@babel/cli": "^7.25.6",
"@babel/core": "^7.25.2",
"@babel/plugin-transform-runtime": "^7.25.4",
"@babel/preset-env": "^7.25.4",
"@babel/preset-react": "^7.24.7",
"@babel/preset-typescript": "^7.24.7",
"@rollup/plugin-typescript": "^12.1.0",
"@types/react": "^18.3.10",
"@types/react-dom": "^18.3.0",
"rollup": "^4.22.5",
"rollup-plugin-postcss": "^4.0.2",
"typescript": "^5.6.2"
},
"dependencies": {
"@rollup/plugin-node-resolve": "^15.3.0",
"tslib": "^2.7.0"
}
}