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

2 months ago
  1. {
  2. "name": "@viz-js/viz",
  3. "description": "WebAssembly build of Graphviz with a simple wrapper for using it on the web",
  4. "keywords": [
  5. "graphviz",
  6. "emscripten"
  7. ],
  8. "version": "3.4.0",
  9. "repository": {
  10. "type": "git",
  11. "url": "git+https://github.com/mdaines/viz-js.git",
  12. "directory": "packages/viz"
  13. },
  14. "license": "MIT",
  15. "types": "types/index.d.ts",
  16. "exports": {
  17. "types": "./types/index.d.ts",
  18. "import": "./lib/viz-standalone.mjs",
  19. "require": "./lib/viz-standalone.js"
  20. },
  21. "main": "lib/viz-standalone.js",
  22. "module": "lib/viz-standalone.mjs",
  23. "files": [
  24. "lib/viz-standalone.js",
  25. "lib/viz-standalone.mjs",
  26. "types/index.d.ts"
  27. ],
  28. "devDependencies": {
  29. "@babel/core": "^7.21.4",
  30. "@babel/preset-env": "^7.21.4",
  31. "@rollup/plugin-babel": "^6.0.3",
  32. "@rollup/plugin-terser": "^0.4.1",
  33. "jsdom": "^21.1.1",
  34. "mocha": "^10.2.0",
  35. "rollup": "^3.20.7"
  36. },
  37. "scripts": {
  38. "test": "mocha --include \"test/*.test.mjs\""
  39. }
  40. }