forked from elilambnz/react-py
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.33 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
{
"name": "react-py",
"version": "1.1.1-alpha.0",
"description": "Run Python code directly in the browser",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"prepare": "npm run build",
"test": "mocha -r jsdom-global/register",
"release": "standard-version",
"publish": "git push --follow-tags origin main && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/elilambnz/react-py.git"
},
"keywords": [
"react",
"python",
"pyodide"
],
"author": "Eli Lamb",
"license": "MIT",
"bugs": {
"url": "https://github.com/elilambnz/react-py/issues"
},
"homepage": "https://github.com/elilambnz/react-py#readme",
"devDependencies": {
"@testing-library/react-hooks": "^8.0.1",
"@types/chai": "^4.3.1",
"@types/mocha": "^9.1.1",
"@types/node": "^18.11.9",
"@types/react": "^18.0.15",
"chai": "^4.3.6",
"jsdom": "20.0.3",
"jsdom-global": "3.0.2",
"mocha": "^10.0.0",
"react-test-renderer": "^18.2.0",
"standard-version": "^9.3.1",
"ts-node": "^10.2.1",
"typescript": "^4.4.3"
},
"peerDependencies": {
"react": "^16.9.0 || ^17.0.0 || ^18.0.0",
"react-dom": "^16.9.0 || ^17.0.0 || ^18.0.0"
},
"dependencies": {
"comlink": "^4.3.1"
}
}