-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.47 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.47 KB
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
{
"name": "theming",
"version": "3.3.0",
"description": "Unified CSSinJS theming solution for React",
"main": "dist/index.js",
"module": "dist/theming.esm.js",
"typings": "./dist/index.d.ts",
"files": [
"dist"
],
"engines": {
"node": ">=12.20"
},
"scripts": {
"test": "ava",
"prebuild": "rimraf dist",
"build": "tsdx build",
"ts:format": "prettier src/* --write",
"ts:format:check": "prettier src/* --check"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cssinjs/theming.git"
},
"keywords": [
"react",
"theme",
"theming",
"styled-components",
"jss",
"cssinjs",
"css-in-js"
],
"author": "Vladimir Starkov <[email protected]> (https://iamstarkov.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/cssinjs/theming/issues"
},
"homepage": "https://github.com/cssinjs/theming#readme",
"devDependencies": {
"@types/hoist-non-react-statics": "^3.3.1",
"@types/react": "^16.4.18",
"@types/react-test-renderer": "^16.9.1",
"@types/sinon": "^10.0.0",
"ava": "^4.0.0-alpha.2",
"react": "^16.8.0",
"react-test-renderer": "^16.8.0",
"rimraf": "^2.6.1",
"sinon": "^10.0.0",
"ts-node": "^9.1.1",
"tsdx": "^0.14.1",
"typescript": "^4.2.4"
},
"dependencies": {
"hoist-non-react-statics": "^3.3.0",
"react-display-name": "^0.2.4",
"tiny-warning": "^1.0.2"
},
"peerDependencies": {
"react": ">=16.7"
}
}