-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
41 lines (41 loc) · 1014 Bytes
/
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
{
"name": "use-pyodide",
"version": "0.1.3",
"description": "React hook to run pyodide in a web worker",
"author": "Matt Holden",
"license": "MIT",
"homepage": "https://github.com/holdenmatt/use-pyodide",
"repository": {
"type": "git",
"url": "https://github.com/holdenmatt/use-pyodide"
},
"types": "./dist/types/index.d.ts",
"scripts": {
"build": "rm -rf dist && tsc --declaration --listEmittedFiles"
},
"dependencies": {
"@holdenmatt/ts-utils": "^0.1.10",
"comlink": "^4.4.1",
"pyodide": "^0.23.4",
"react-async-hook": "^4.0.0"
},
"devDependencies": {
"@types/react": "^18.2.20",
"@typescript-eslint/eslint-plugin": "^6.3.0",
"eslint": "^8.47.0",
"eslint-config-next": "^13.4.13",
"eslint-config-prettier": "^8.10.0",
"prettier": "^2.8.8",
"typescript": "^5.1.6"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0 || ^18.0.0"
},
"keywords": [
"pyodide",
"web",
"worker",
"react",
"hook"
]
}