forked from tqwewe/emotion-solid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.17 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
{
"name": "emotion-solid",
"version": "1.1.1",
"description": "Emotion JS support for Solid JS projects.",
"repository": "[email protected]:Acidic9/emotion-solid.git",
"author": "Ari Seyhun <[email protected]>",
"license": "MIT",
"private": false,
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"types": "dist/types.d.ts",
"files": [
"dist/**"
],
"scripts": {
"build": "rollup -c"
},
"devDependencies": {
"@babel/core": "^7.14.6",
"@babel/plugin-proposal-optional-chaining": "^7.14.5",
"@babel/preset-typescript": "^7.14.5",
"@types/node": "^15.12.5",
"babel-preset-solid": "^1.0.0",
"rollup": "^2.52.3",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-dts": "^3.0.2",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"solid-js": "^1.0.0",
"typescript": "^4.3.4"
},
"peerDependencies": {
"solid-js": "^1.0.0"
},
"dependencies": {
"@emotion/cache": "^11.4.0",
"@emotion/is-prop-valid": "^1.1.0",
"@emotion/serialize": "^1.0.2",
"@emotion/utils": "^1.0.0"
}
}