-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 957 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 957 Bytes
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
{
"name": "react-usewebworker-hook",
"version": "1.0.1",
"description": "Streamline React render times by moving computation heavy functions off the main thread with a simple hook",
"author": "Louis Gelinas",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/gelinas/react-usewebworker-hook.git"
},
"main": "./lib/cjs/index.js",
"module": "./lib/esm/index.js",
"types": "./lib/esm/index.d.ts",
"scripts": {
"build": "npm run build:esm && npm run build:cjs",
"build:esm": "tsc",
"build:cjs": "tsc --module commonjs --outDir lib/cjs"
},
"keywords": [
"react",
"webworker",
"web worker",
"worker"
],
"files": [
"/lib",
"/src"
],
"devDependencies": {
"@types/react": "^17.0.43",
"@types/react-dom": "^17.0.14",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"typescript": "^4.6.3"
},
"peerDependencies": {
"react": ">=16.8.0"
}
}