forked from reactive-python/reactpy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 718 Bytes
/
Copy pathpackage.json
File metadata and controls
28 lines (28 loc) · 718 Bytes
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
{
"author": "Ryan Morshead",
"license": "MIT",
"main": "src/dist/index.js",
"types": "src/dist/index.d.ts",
"description": "A client application for ReactPy implemented in React",
"dependencies": {
"@reactpy/client": "^0.2.0",
"preact": "^10.7.0"
},
"devDependencies": {
"@types/react": "^17.0",
"@types/react-dom": "^17.0",
"typescript": "^4.9.5",
"vite": "^3.1.8"
},
"repository": {
"type": "git",
"url": "https://github.com/reactive-python/reactpy"
},
"scripts": {
"build": "vite build",
"format": "prettier --write . && eslint --fix .",
"test": "npm run check:tests",
"check:tests": "echo 'no tests'",
"check:types": "tsc --noEmit"
}
}