gradio/js/wasm/package.json

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

31 lines
729 B
JSON
Raw Normal View History

2023-06-27 15:09:50 +08:00
{
"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"
},
2023-06-27 15:09:50 +08:00
"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:*",
2023-06-27 15:09:50 +08:00
"build:client": "tsc",
"build:worker": "vite build --config vite.worker.config.js",
"build": "run-s build:worker build:client"
},
"devDependencies": {
"pyodide": "^0.23.2"
},
"dependencies": {
"@types/path-browserify": "^1.0.0",
"path-browserify": "^1.0.1"
2023-06-27 15:09:50 +08:00
}
}