-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 898 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
{
"name": "@lewisl9029/use-classes",
"version": "0.0.12",
"description": "Use classes",
"repository": "https://github.com/lewisl9029/use-classes.git",
"author": "Lewis Liu <[email protected]>",
"license": "MIT",
"type": "module",
"module": "./src/useClasses.js",
"types": "./src/useClasses.d.ts",
"sideEffects": false,
"exports": {
".": {
"types": "./src/useClasses.d.ts",
"import": "./src/useClasses.js"
}
},
"files": [
"src/**/*"
],
"scripts": {
"start": "yarn workspace benchmarks start",
"build": "yarn workspace benchmarks build",
"benchmark": "yarn workspace benchmarks benchmark"
},
"workspaces": [
"benchmarks"
],
"peerDependencies": {
"react": ">=16.8.0"
},
"devDependencies": {
"prettier": "^2.8.8",
"react": ">=16.8.0"
},
"dependencies": {
"csstype": "^3.0.10"
}
}