-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.08 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
{
"name": "useresizehandle",
"version": "0.2.0",
"description": "React hook for adding resizing to components",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"files": [
"dist/"
],
"scripts": {
"clean": "rimraf dist",
"build": "npm-run-all clean build:cjs build:esm",
"build:esm": "tsc -m esNext --outDir dist/esm",
"build:cjs": "tsc -m commonjs --outDir dist/cjs",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/juhanakristian/useresizehandle.git"
},
"keywords": [
"react",
"resize"
],
"author": "Juhana Jauhiainen <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/juhanakristian/useresizehandle/issues"
},
"homepage": "https://github.com/juhanakristian/useresizehandle#readme",
"devDependencies": {
"@types/react": "^18.0.21",
"npm-run-all": "^4.1.5",
"prettier": "^2.3.2",
"rimraf": "^3.0.2",
"typescript": "^4.3.4"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
}
}