gradio/js/wasm/package.json
pngwn 5d5ddcfa9b
chore: update versions (#5786)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2023-10-04 15:46:45 +01:00

31 lines
729 B
JSON

{
"name": "@gradio/wasm",
"version": "0.0.4",
"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": {
"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"
}
}