-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.13 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
{
"name": "rely-use-callback",
"version": "0.0.10",
"description": "Rely on useCallback in react app",
"type": "module",
"source": "src/index.ts",
"exports": {
"require": "./lib/rely-use-callback.cjs",
"default": "./lib/rely-use-callback.modern.js"
},
"main": "./lib/rely-use-callback.cjs",
"module": "./lib/rely-use-callback.module.js",
"unpkg": "./lib/rely-use-callback.umd.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "rm -rf ./lib/*; microbundle build",
"changeset": "changeset",
"release": "npm run build && changeset publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vkruglikov/rely-use-callback.git"
},
"author": "Valentin Kruglikov [email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/vkruglikov/rely-use-callback/issues"
},
"homepage": "https://github.com/vkruglikov/rely-use-callback#readme",
"devDependencies": {
"@changesets/cli": "^2.26.1",
"microbundle": "^0.15.1",
"@types/react": "^18.0.37",
"react": "^18.2.0"
},
"peerDependencies": {
"react": "^17 || ^18",
"@types/react": "^17 || 18"
}
}