-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.32 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
{
"name": "@tdkn/use-modal-state",
"description": "React hook for modal state",
"version": "0.1.1",
"license": "MIT",
"homepage": "https://github.com/tdkn/use-modal-state#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/tdkn/use-modal-state.git"
},
"bugs": {
"url": "https://github.com/tdkn/use-modal-state/issues"
},
"author": {
"email": "web@tedokon.com",
"name": "Shun Tedokon",
"url": "https://tdkn.dev"
},
"source": "src/use-modal-state.ts",
"main": "dist/use-modal-state.js",
"module": "dist/use-modal-state.mjs",
"unpkg": "dist/use-modal-state.umd.js",
"types": "dist/use-modal-state.d.ts",
"amdName": "UseModalState",
"sideEffects": false,
"scripts": {
"prepare": "husky install",
"build": "rm -rf dist && microbundle",
"dev": "microbundle watch",
"test:prettier": "prettier --check .",
"test:typescript": "tsc --pretty --noEmit"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0",
"react-dom": "^16.8.0 || ^17.0.0"
},
"devDependencies": {
"@types/react": "17.0.20",
"husky": "7.0.2",
"lint-staged": "^11.1.2",
"microbundle": "0.13.3",
"prettier": "2.3.2",
"react": "17.0.2",
"react-dom": "17.0.2",
"typescript": "4.4.2"
},
"lint-staged": {
"*.{ts,md}": "prettier --write"
}
}