-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
41 lines (41 loc) · 934 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
41
{
"name": "solid-styled-components",
"description": "Styled Components for Solid",
"version": "0.28.5",
"author": "Ryan Carniato",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/solidjs/solid-styled-components"
},
"type": "module",
"main": "src/index.js",
"types": "src/index.d.ts",
"files": [
"src"
],
"sideEffects": false,
"scripts": {
"test": "jest && npm run test:types",
"test:types": "tsc --project tsconfig.test.json"
},
"dependencies": {
"csstype": "^3.1.0",
"goober": "^2.1.10"
},
"peerDependencies": {
"solid-js": "^1.4.4"
},
"devDependencies": {
"@babel/preset-typescript": "7.16.7",
"@types/jest": "^27.4.0",
"babel-preset-solid": "^1.4.4",
"jest": "^27.4.7",
"solid-jest": "^0.2.0",
"solid-js": "^1.4.4",
"typescript": "^4.5.4"
},
"jest": {
"preset": "solid-jest/preset/browser"
}
}