vega-embed
Version:
Publish Vega visualizations as embedded web components.
101 lines (100 loc) • 2.93 kB
JSON
{
"name": "vega-embed",
"version": "7.1.0",
"description": "Publish Vega visualizations as embedded web components.",
"keywords": [
"vega",
"data",
"visualization",
"component",
"embed"
],
"repository": {
"type": "git",
"url": "git+http://github.com/vega/vega-embed.git"
},
"author": {
"name": "Vega",
"url": "https://vega.github.io"
},
"bugs": {
"url": "https://github.com/vega/vega-embed/issues"
},
"funding": {
"url": "https://app.hubspot.com/payments/GyPC972GD9Rt"
},
"homepage": "https://github.com/vega/vega-embed#readme",
"license": "BSD-3-Clause",
"type": "module",
"exports": {
"types": "./build/embed.d.ts",
"default": "./build/embed.js"
},
"unpkg": "build/vega-embed.min.js",
"jsdelivr": "build/vega-embed.min.js",
"files": [
"src",
"build"
],
"devDependencies": {
"@release-it/conventional-changelog": "^10.0.1",
"@rollup/plugin-commonjs": "^28.0.6",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.1",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.4",
"@types/semver": "^7.7.0",
"@vitest/coverage-istanbul": "^3.2.4",
"@vitest/eslint-plugin": "^1.3.4",
"browser-sync": "^3.0.4",
"concurrently": "^9.2.0",
"del-cli": "^7.0.0",
"eslint": "^9.30.1",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-prettier": "^5.5.1",
"jsdom": "^26.1.0",
"postinstall-postinstall": "^2.1.0",
"prettier": "^3.6.2",
"release-it": "^19.0.3",
"rollup": "4.52.3",
"rollup-plugin-bundle-size": "^1.0.3",
"sass": "^1.89.2",
"typedoc": "^0.28.7",
"typescript": "^5.8.3",
"typescript-eslint": "^8.36.0",
"vega": "^6.1.2",
"vega-lite": "^6.2.0",
"vitest": "^3.2.4",
"vitest-canvas-mock": "^0.3.3"
},
"peerDependencies": {
"vega": "*",
"vega-lite": "*"
},
"dependencies": {
"fast-json-patch": "^3.1.1",
"json-stringify-pretty-compact": "^4.0.0",
"semver": "^7.7.2",
"tslib": "^2.8.1",
"vega-interpreter": "^2.0.0",
"vega-schema-url-parser": "^3.0.2",
"vega-themes": "3.0.0",
"vega-tooltip": "1.0.0"
},
"scripts": {
"prebuild": "npm run clean && npm run build:style",
"build": "rollup -c",
"build:style": "./build-style.sh",
"clean": "del-cli build src/style.ts",
"typedoc": "npm run build && typedoc src/embed.ts --out docs",
"prepublishOnly": "npm run clean && npm run build",
"preversion": "npm run lint && npm run test",
"serve": "browser-sync start --directory -s -f build *.html",
"start": "npm run build && concurrently --kill-others -n Server,Rollup 'npm run serve' 'rollup -c -w'",
"pretest": "npm run build:style",
"test": "vitest run",
"format": "eslint --fix && prettier . --write",
"lint": "eslint && prettier . --check",
"release": "release-it"
}
}