-
-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
52 lines (52 loc) · 1.23 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
{
"name": "react-py",
"version": "1.11.2",
"description": "Effortlessly run Python code in your React apps",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"prepare": "npm run build",
"release": "standard-version",
"publish": "git push --follow-tags origin main && npm publish",
"lint": "eslint .",
"style": "prettier --check src"
},
"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": {
"@types/react": "^18.0.32",
"@typescript-eslint/eslint-plugin": "^5.46.0",
"@typescript-eslint/parser": "^5.46.0",
"eslint": "^8.29.0",
"prettier": "^2.8.1",
"pyodide": "^0.26.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"standard-version": "^9.3.1",
"typescript": "^5.0.3"
},
"peerDependencies": {
"react": ">=16.9.0",
"react-dom": ">=16.9.0"
},
"dependencies": {
"comlink": "^4.4.1"
}
}