-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
92 lines (92 loc) · 2.28 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "@minstack/styled",
"description": "Minimal CSS-in-JS styled components solution for React.",
"author": "Chris Ackerman <chris@topher.land>",
"license": "ISC",
"version": "1.0.2",
"files": [
"lib/**"
],
"directories": {
"lib": "lib"
},
"type": "module",
"types": "lib/types/index.d.ts",
"main": "lib/cjs/index.js",
"module": "lib/esm/index.js",
"exports": {
".": {
"types": "./lib/types/index.d.ts",
"require": "./lib/cjs/index.js",
"default": "./lib/esm/index.js"
}
},
"sideEffects": false,
"scripts": {
"start": "vite --host",
"test": "del-cli out && rc test -o",
"prepack": "del-cli lib *.tgz && rc build",
"modernize": "npx npm-check-updates -i --format group",
"analyze": "npm run prepack && webpack --analyze",
"benchmark": "npm run prepack && node benchmark.js"
},
"devDependencies": {
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@types/jest": "^29.2.2",
"@types/node": "^18.11.9",
"@types/react": "^18.0.25",
"@types/react-dom": "^18.0.8",
"@types/styled-components": "^5.1.26",
"@vitejs/plugin-react": "^2.2.0",
"compression-webpack-plugin": "^10.0.0",
"del-cli": "^5.0.0",
"eslint": "^8.27.0",
"eslint-config-rational": "^2.0.7",
"goober": "^2.1.11",
"html-tag-names": "^2.0.1",
"jest": "^29.3.0",
"jest-environment-jsdom": "^29.3.0",
"normalize.css": "^8.0.1",
"parallel-rc": "^1.0.12",
"prettier": "^2.7.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"styled-components": "^5.3.6",
"ts-jest": "^29.0.3",
"typescript": "^4.8.4",
"vite": "^3.2.3",
"vite-plugin-full-reload": "^1.0.4",
"webpack": "^5.75.0",
"webpack-bundle-analyzer": "^4.7.0",
"webpack-cli": "^5.0.0"
},
"peerDependencies": {
"react": ">=16.14.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/theminstack/styled.git"
},
"keywords": [
"component",
"css",
"css-in-js",
"react",
"sass",
"scss",
"styled-components",
"style",
"styles",
"styling",
"theme",
"typescript",
"ssr",
"jss",
"styled-jsx",
"emotion",
"emotionjs"
]
}