You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
1005 B
40 lines
1005 B
{
|
|
"name": "@viz-js/viz",
|
|
"description": "WebAssembly build of Graphviz with a simple wrapper for using it on the web",
|
|
"keywords": [
|
|
"graphviz",
|
|
"emscripten"
|
|
],
|
|
"version": "3.4.0",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/mdaines/viz-js.git",
|
|
"directory": "packages/viz"
|
|
},
|
|
"license": "MIT",
|
|
"types": "types/index.d.ts",
|
|
"exports": {
|
|
"types": "./types/index.d.ts",
|
|
"import": "./lib/viz-standalone.mjs",
|
|
"require": "./lib/viz-standalone.js"
|
|
},
|
|
"main": "lib/viz-standalone.js",
|
|
"module": "lib/viz-standalone.mjs",
|
|
"files": [
|
|
"lib/viz-standalone.js",
|
|
"lib/viz-standalone.mjs",
|
|
"types/index.d.ts"
|
|
],
|
|
"devDependencies": {
|
|
"@babel/core": "^7.21.4",
|
|
"@babel/preset-env": "^7.21.4",
|
|
"@rollup/plugin-babel": "^6.0.3",
|
|
"@rollup/plugin-terser": "^0.4.1",
|
|
"jsdom": "^21.1.1",
|
|
"mocha": "^10.2.0",
|
|
"rollup": "^3.20.7"
|
|
},
|
|
"scripts": {
|
|
"test": "mocha --include \"test/*.test.mjs\""
|
|
}
|
|
}
|