-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.33 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
{
"name": "@fedek6/rollup-linaria-template",
"version": "1.0.4",
"repository": "[email protected]:fedek6/rollup-linaria-template.git",
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"author": "Konrad Fedorczyk <[email protected]>",
"license": "MIT",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"src",
"styles.css"
],
"scripts": {
"build": "yarn clean && rollup --config",
"clean": "rm -rf dist styles.css"
},
"sideEffects": [
"*.css"
],
"devDependencies": {
"@babel/core": "^7.15.0",
"@babel/preset-react": "^7.14.5",
"@babel/preset-typescript": "^7.15.0",
"@linaria/babel-preset": "^3.0.0-beta.4",
"@linaria/core": "^3.0.0-beta.4",
"@linaria/react": "^3.0.0-beta.7",
"@linaria/rollup": "^3.0.0-beta.7",
"@linaria/shaker": "^3.0.0-beta.7",
"@rollup/plugin-commonjs": "^20.0.0",
"@rollup/plugin-typescript": "^8.2.5",
"@types/react": "^17.0.17",
"rollup": "^2.56.2",
"rollup-plugin-css-only": "^3.1.0",
"rollup-plugin-flat-dts": "^1.2.3",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-terser": "^7.0.2",
"tslib": "^2.3.0",
"typescript": "^4.3.5"
},
"peerDependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2"
}
}