adf0d17497
publish / version_or_publish (push) Waiting to run
storybook-build / changes (push) Waiting to run
storybook-build / :storybook-build (push) Blocked by required conditions
Sync Gradio Skills to Hugging Face / sync-skills (push) Waiting to run
functional / changes (push) Waiting to run
functional / build-frontend (push) Blocked by required conditions
functional / functional-test-SSR=false (push) Blocked by required conditions
functional / functional-reload (push) Blocked by required conditions
functional / functional-test-SSR=true (push) Blocked by required conditions
hygiene / hygiene-test (push) Waiting to run
python / changes (push) Waiting to run
python / build (push) Blocked by required conditions
python / test-ubuntu-latest-flaky (push) Blocked by required conditions
python / test-ubuntu-latest-not-flaky (push) Blocked by required conditions
python / test-windows-latest-flaky (push) Blocked by required conditions
python / test-windows-latest-not-flaky (push) Blocked by required conditions
js / changes (push) Waiting to run
js / js-test (push) Blocked by required conditions
docs-build / changes (push) Waiting to run
docs-build / docs-build (push) Blocked by required conditions
docs-build / website-build (push) Blocked by required conditions
47 lines
1.2 KiB
JSON
47 lines
1.2 KiB
JSON
{
|
|
"name": "@gradio/client",
|
|
"version": "2.3.1",
|
|
"description": "Gradio API client",
|
|
"type": "module",
|
|
"main": "dist/index.js",
|
|
"author": "",
|
|
"license": "ISC",
|
|
"exports": {
|
|
".": {
|
|
"gradio": "./src/index.ts",
|
|
"browser": "./dist/browser.js",
|
|
"import": "./dist/index.js",
|
|
"default": "./dist/index.js"
|
|
},
|
|
"./package.json": "./package.json",
|
|
"./browser.js": "./dist/browser.js"
|
|
},
|
|
"dependencies": {
|
|
"fetch-event-stream": "^0.1.5"
|
|
},
|
|
"devDependencies": {
|
|
"msw": "^2.11.3",
|
|
"typescript": "^5.9.3"
|
|
},
|
|
"scripts": {
|
|
"bundle": "vite build --ssr",
|
|
"bundle:browser": "BROWSER_BUILD=true vite build",
|
|
"generate_types": "tsc",
|
|
"clean": "rm -rf dist",
|
|
"build": "pnpm clean && pnpm bundle && pnpm bundle:browser && pnpm generate_types",
|
|
"test": "pnpm test:browser && pnpm test:node",
|
|
"test:browser": "vitest run -c vite.config.ts",
|
|
"test:node": "NODE_NO_WARNINGS=1 TEST_MODE=node vitest run -c vite.config.ts",
|
|
"preview:browser": "vite dev --mode=preview"
|
|
},
|
|
"engines": {
|
|
"node": ">=18.0.0"
|
|
},
|
|
"main_changeset": true,
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/gradio-app/gradio.git",
|
|
"directory": "client/js"
|
|
}
|
|
}
|