-
Notifications
You must be signed in to change notification settings - Fork 75
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 850 Bytes
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 850 Bytes
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
{
"name": "@griffel/react",
"version": "1.7.4",
"description": "React implementation of Atomic CSS-in-JS",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/microsoft/griffel"
},
"sideEffects": false,
"type": "module",
"main": "./lib/index.cjs",
"module": "./src/index.js",
"types": "./src/index.d.ts",
"exports": {
".": {
"types": "./src/index.d.ts",
"import": "./src/index.js",
"require": "./lib/index.cjs"
},
"./package.json": "./package.json"
},
"wyw-in-js": {
"tags": {
"makeStyles": "@griffel/tag-processor/make-styles",
"makeResetStyles": "@griffel/tag-processor/make-reset-styles"
}
},
"dependencies": {
"@griffel/core": "^1.21.2",
"tslib": "^2.1.0"
},
"peerDependencies": {
"react": ">=16.14.0 <20.0.0"
}
}