-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
56 lines (56 loc) · 1.47 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "react-util-hooks",
"version": "0.1.0",
"description": "This Library Contains Some Useful Hooks For ReactJS",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"type": "module",
"types": "dist/types",
"files": [
"dist/**/*"
],
"scripts": {
"build": "rollup -c rollup.config.ts",
"format": "prettier --write \"src/**/*.ts\" \"dist/**/*.ts\" \"dist/**/*.js\"",
"lint": "tslint -p tsconfig.json",
"test": "echo \"No test specified\"",
"commit": "git add . && cz",
"semantic-release": "semantic-release --branches main"
},
"repository": {
"type": "git",
"url": "https://github.com/prantaDutta/react-util-hooks.git"
},
"bugs": {
"url": "https://github.com/prantaDutta/react-util-hooks.git/issues"
},
"homepage": "https://github.com/prantaDutta/react-util-hooks#readme",
"author": "PRANTA Dutta",
"license": "ISC",
"keywords": [
"react",
"reactJS",
"typescript",
"react-hooks",
"react-util-hooks"
],
"devDependencies": {
"@rollup/plugin-node-resolve": "7.1.1",
"cz-conventional-changelog": "^3.3.0",
"prettier": "^2.8.7",
"rollup": "1.31.0",
"rollup-plugin-typescript2": "0.25.3",
"semantic-release": "^17.4.7",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^5.0.4"
},
"peerDependencies": {
"react": "^18.2.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}