-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 880 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
{
"name": "ts-styled-library",
"version": "0.2.1",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/esm/index.d.ts",
"files": [
"dist/*"
],
"license": "MIT",
"scripts": {
"build": "yarn clean && yarn build:esm && yarn build:cjs",
"build:esm": "tsc",
"build:cjs": "tsc --module commonjs --outDir dist/cjs",
"clean": "rm -rf ./dist/",
"prepare": "install-peers"
},
"dependencies": {
"styled-components": "^5.3.1"
},
"devDependencies": {
"@types/react": "^17.0.19",
"@types/styled-components": "^5.1.14",
"install-peers-cli": "^2.2.0",
"ts-loader": "^9.2.5",
"typescript": "^4.4.2",
"typescript-plugin-styled-components": "^2.0.0"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
},
"resolutions": {
"styled-components": "^5"
}
}