-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.29 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.29 KB
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
{
"name": "react-cancelable",
"version": "1.0.4",
"main": "./lib/cjs/index.js",
"module": "./lib/esm/index.js",
"types": "./lib/esm/index.d.ts",
"license": "MIT",
"keywords": [
"cancelable",
"request",
"hooks",
"react"
],
"description": "Make cancelable requests with react-hooks",
"author": "Vladyslav Ohirenko <aguretsvlad@gmail.com>",
"homepage": "https://vladagurets.github.io/react-cancelable/",
"repository": {
"type": "git",
"url": "https://github.com/vladagurets/react-cancelable/"
},
"bugs": {
"url": "https://github.com/vladagurets/react-cancelable/issues",
"email": "aguretsvlad@gmail.com"
},
"scripts": {
"build:cjs": "tsc --module commonjs --outDir lib/cjs",
"build:esm": "tsc",
"build": "yarn build:esm && yarn build:cjs",
"pub": "yarn test --watchAll=false && yarn publish",
"start": "yarn build && yarn --cwd ./example start",
"test:lazy": "yarn --cwd ./example test",
"test": "yarn build && yarn test:lazy",
"watch": "tsc -w"
},
"peerDependencies": {
"react": ">=16.8",
"react-dom": ">=16.8"
},
"devDependencies": {
"@types/react": "^18.0.21",
"@types/react-dom": "^18.0.6",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"typescript": "^4.8.4"
},
"files": [
"/lib"
]
}