-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
40 lines (40 loc) · 983 Bytes
/
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
{
"name": "react-smooth-corners",
"version": "1.0.4",
"main": "./lib/cjs/index.js",
"module": "./lib/esm/index.js",
"types": "./lib/esm/index.d.ts",
"repository": "https://github.com/DJanoskova/react-smooth-corners",
"homepage": "https://react-smooth-corners.netlify.app/",
"author": "DJanoskova",
"keywords": [
"smooth corners",
"border radius",
"smooth-corners",
"round corners",
"react"
],
"license": "MIT",
"devDependencies": {
"@types/react": "^18.0.9",
"@types/react-dom": "^18.0.4",
"@types/styled-components": "^5.1.25",
"typescript": "^4.6.4"
},
"scripts": {
"build": "yarn build:esm && yarn build:cjs",
"build:esm": "tsc",
"build:cjs": "tsc --module commonjs --outDir lib/cjs"
},
"peerDependencies": {
"react": ">=16.8.0 <= 19",
"react-dom": ">=16.8.0 <= 19"
},
"files": [
"/lib"
],
"dependencies": {
"smooth-corners": "^1.0.8",
"styled-components": "^5.3.5"
}
}