mirror of
https://github.com/gradio-app/gradio.git
synced 2024-11-27 01:40:20 +08:00
c0baeb4d1c
* fix * fix again * fix again * fix again * fix again * fix again * fix again * try this?
27 lines
646 B
JSON
27 lines
646 B
JSON
{
|
|
"name": "@gradio/wasm",
|
|
"version": "0.0.1",
|
|
"description": "Gradio Wasm package",
|
|
"type": "module",
|
|
"main": "./dist/index.js",
|
|
"exports": {
|
|
".": "./dist/index.js",
|
|
"./package.json": "./package.json"
|
|
},
|
|
"private": true,
|
|
"keywords": [],
|
|
"author": "",
|
|
"license": "ISC",
|
|
"scripts": {
|
|
"start:client": "tsc -w --incremental",
|
|
"start:worker": "vite build --config vite.worker.config.js --watch --emptyOutDir=false",
|
|
"start": "run-p start:*",
|
|
"build:client": "tsc",
|
|
"build:worker": "vite build --config vite.worker.config.js",
|
|
"build": "run-s build:worker build:client"
|
|
},
|
|
"devDependencies": {
|
|
"pyodide": "^0.23.2"
|
|
}
|
|
}
|