CoolFace
Datasetpublic

gradio/frontend

sourceHugging Faceupdated 16h agoView on Hugging Face
1likes413kdownloads
package.json48 linesDownload Raw Back to plot
1{2	"name": "@gradio/plot",3	"version": "0.9.25",4	"description": "Gradio UI packages",5	"type": "module",6	"author": "",7	"license": "ISC",8	"private": false,9	"dependencies": {10		"@gradio/atoms": "workspace:^",11		"@gradio/icons": "workspace:^",12		"@gradio/statustracker": "workspace:^",13		"@gradio/theme": "workspace:^",14		"@gradio/utils": "workspace:^",15		"@rollup/plugin-json": "^6.1.0",16		"plotly.js-dist-min": "^3.1.1",17		"vega": "^5.23.0",18		"vega-embed": "^6.25.0",19		"vega-lite": "^5.12.0"20	},21	"devDependencies": {22		"@gradio/preview": "workspace:^"23	},24	"main": "./Index.svelte",25	"main_changeset": true,26	"exports": {27		"./package.json": "./package.json",28		".": {29			"gradio": "./Index.svelte",30			"svelte": "./dist/Index.svelte",31			"types": "./dist/Index.svelte.d.ts"32		},33		"./base": {34			"gradio": "./shared/Plot.svelte",35			"svelte": "./dist/shared/Plot.svelte",36			"types": "./dist/shared/Plot.svelte.d.ts"37		}38	},39	"peerDependencies": {40		"svelte": "^5.43.4"41	},42	"repository": {43		"type": "git",44		"url": "git+https://github.com/gradio-app/gradio.git",45		"directory": "js/plot"46	}47}48 
gradio/frontend · CoolFace