-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1.14 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
{
"name": "react-use-queue",
"version": "0.5.0",
"description": "A simple task queue implementation for React",
"main": "./lib/cjs/index.ts",
"module": "./lib/esm/index.js",
"types": "./lib/cjs/index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build:esm": "./node_modules/.bin/tsc",
"build:cjs": "tsc --module commonjs --outDir lib/cjs",
"build": "npm run build:esm && npm run build:cjs",
"clean": "rm -rf node_modules package-lock.json && npm i"
},
"repository": {
"type": "git",
"url": "git+https://github.com/baughmann/react-use-queue.git"
},
"keywords": [
"react",
"react-native",
"queue",
"job",
"task",
"background",
"hook",
"use",
"usequeue"
],
"author": "Nick Baughman",
"license": "MIT",
"bugs": {
"url": "https://github.com/baughmann/react-use-queue/issues"
},
"homepage": "https://github.com/baughmann/react-use-queue#readme",
"devDependencies": {
"@types/react": "^16.8.0 || ^17 || ^18",
"typescript": "^4.7.4"
},
"peerDependencies": {
"react": "^16.8.0 || ^17 || ^18"
},
"files": [
"/lib"
]
}