-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
62 lines (62 loc) · 1.85 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-dcp-worker",
"version": "4.0.0",
"description": "Embed the DCP Worker in a React app",
"keywords": [
"dcp",
"dcp-worker",
"react"
],
"homepage": "https://github.com/Distributive-Network/use-dcp-worker#readme",
"bugs": {
"url": "https://github.com/Distributive-Network/use-dcp-worker/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Distributive-Network/use-dcp-worker.git"
},
"license": "MIT",
"author": "Kirill Kirnichansky <kirill@distributive.network>",
"maintainers": [
"Bryan Hoang <bryan@distributive.network>"
],
"contributors": [
"Robert Mirandola <robert@distributive.network>",
"Eddie Roosenmallen <eddie@distributive.network>",
"Ryan Saweczko <ryansaweczko@distributive.network>",
"David Courtis <david@distributive.network>"
],
"main": "lib/useDCPWorker.js",
"directories": {
"lib": "lib/"
},
"files": [
"lib/",
"src/"
],
"scripts": {
"build": "tsc --build",
"clean": "tsc --build --clean",
"lint": "eslint --cache --cache-strategy=content --cache-location=.cache/eslint/ --ignore-path=.gitignore --ext=tsx .",
"prepare": "npm run build"
},
"devDependencies": {
"@types/react": "18.3.4",
"@typescript-eslint/eslint-plugin": "8.3.0",
"@typescript-eslint/parser": "8.3.0",
"eslint": "8.57.0",
"eslint-plugin-react": "7.35.0",
"eslint-plugin-react-hooks": "4.6.2",
"eslint-plugin-react-refresh": "0.4.11",
"typescript": "5.5.4"
},
"peerDependencies": {
"bignumber.js": ">=9",
"react": "^16.8.0 || ^17.0.0 || ^18.0.0",
"react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0"
},
"packageManager": "npm@10.8.2+sha512.c7f0088c520a46596b85c6f8f1da943400199748a0f7ea8cb8df75469668dc26f6fb3ba26df87e2884a5ebe91557292d0f3db7d0929cdb4f14910c3032ac81fb",
"engines": {
"node": ">=18"
}
}