forked from jpwallace22/use-react-workers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.73 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
57
58
59
60
61
62
{
"name": "use-react-workers",
"description": "React Hooks for Web Workers & Web Worker utilities",
"author": "Justin Wallace <[email protected]>",
"version": "0.3.2",
"source": "src/index.ts",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"type": "module",
"sideEffects": false,
"exports": {
".": "./dist/index.js"
},
"scripts": {
"prebuild": "yarn test:types",
"build": "vite build",
"build:typecheck": "attw $(npm pack)",
"build:readme": "cp ../README.md README.md",
"dev": "vite build --watch",
"test:types": "tsc --noEmit",
"link": "eslint src/ --ext .ts",
"release:dry": "source ../.env && npx semantic-release --dry-run --branches $(git branch --show-current)"
},
"dependencies": {
"dequal": "^2.0.3"
},
"peerDependencies": {
"react": "16 - 18"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^11.1.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^9.2.6",
"@semantic-release/npm": "^11.0.2",
"@semantic-release/release-notes-generator": "^12.1.0",
"@testing-library/react-hooks": "^3.4.2",
"@types/react": "^16.9.34",
"@typescript-eslint/eslint-plugin": "^6.18.1",
"@vitejs/plugin-react": "^4.2.0",
"react": "^16.13.1",
"react-test-renderer": "^16.13.1",
"semantic-release": "^22.0.12",
"vite": "^5.0.4",
"vite-plugin-dts": "^3.6.4"
},
"license": "MIT",
"repository": "[email protected]:jpwallace22/use-react-workers.git",
"keywords": [
"use",
"webWorker",
"react",
"hooks",
"worker",
"web worker",
"blocking ui",
"javascript",
"background",
"typescript"
]
}