mirror of
https://github.com/gradio-app/gradio.git
synced 2024-11-27 01:40:20 +08:00
0bafdcb550
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
33 lines
808 B
JSON
33 lines
808 B
JSON
{
|
|
"name": "@gradio/wasm",
|
|
"version": "0.3.0",
|
|
"description": "Gradio Wasm package",
|
|
"type": "module",
|
|
"main": "./dist/index.js",
|
|
"exports": {
|
|
".": "./dist/index.js",
|
|
"./package.json": "./package.json",
|
|
"./svelte": "./svelte/index.ts",
|
|
"./network": "./network/index.ts"
|
|
},
|
|
"keywords": [],
|
|
"author": "",
|
|
"license": "ISC",
|
|
"main_changeset": true,
|
|
"scripts": {
|
|
"dev:client": "tsc -w --incremental",
|
|
"dev:worker": "vite build --config vite.worker.config.js --watch --emptyOutDir=false",
|
|
"dev": "run-p dev:*",
|
|
"build:client": "tsc",
|
|
"build:worker": "vite build --config vite.worker.config.js",
|
|
"build": "run-s build:worker build:client"
|
|
},
|
|
"devDependencies": {
|
|
"pyodide": "^0.24.0"
|
|
},
|
|
"dependencies": {
|
|
"@types/path-browserify": "^1.0.0",
|
|
"path-browserify": "^1.0.1"
|
|
}
|
|
}
|