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
20 lines (20 loc) · 873 Bytes
/
package.json
File metadata and controls
20 lines (20 loc) · 873 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
"dependencies": {
"@reactpy/client": "catalog:",
"event-to-object": "catalog:",
"preact": "catalog:"
},
"description": "ReactPy's client-side entry point. This is strictly for internal use and is not designed to be distributed.",
"devDependencies": {
"@pyscript/core": "catalog:",
"morphdom": "catalog:",
"typescript": "catalog:"
},
"license": "MIT",
"name": "@reactpy/app",
"scripts": {
"build": "bun build \"src/index.ts\" \"src/preact.ts\" \"src/preact-dom.ts\" \"src/preact-jsx-runtime.ts\" --outdir=\"../../../../reactpy/static/\" --minify --production --sourcemap=\"linked\" --splitting",
"buildDev": "bun build \"src/index.ts\" \"src/preact.ts\" \"src/preact-dom.ts\" \"src/preact-jsx-runtime.ts\" --outdir=\"../../../../reactpy/static/\" --sourcemap=\"linked\" --splitting",
"checkTypes": "tsc --noEmit"
}
}