forked from reactive-python/reactpy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 831 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
{
"author": "Ryan Morshead",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"description": "A client for ReactPy implemented in React",
"license": "MIT",
"name": "@reactpy/client",
"type": "module",
"version": "0.3.2",
"dependencies": {
"event-to-object": "file:../event-to-object",
"json-pointer": "^0.6.2"
},
"devDependencies": {
"@types/json-pointer": "^1.0.31",
"@types/react": "^17.0",
"@types/react-dom": "^17.0",
"typescript": "^4.9.5"
},
"peerDependencies": {
"react": ">=16 <18",
"react-dom": ">=16 <18"
},
"repository": {
"type": "git",
"url": "https://github.com/reactive-python/reactpy"
},
"scripts": {
"build": "tsc -b",
"test": "npm run check:tests",
"check:tests": "echo 'no tests'",
"check:types": "tsc --noEmit"
}
}