package.json 969 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {
  2. "name": "code-block-writer",
  3. "version": "13.0.3",
  4. "description": "A simple code writer that assists with formatting and visualizing blocks of code.",
  5. "keywords": [
  6. "code generation",
  7. "typescript",
  8. "writer",
  9. "printer"
  10. ],
  11. "author": "David Sherret",
  12. "homepage": "https://github.com/dsherret/code-block-writer#readme",
  13. "repository": {
  14. "type": "git",
  15. "url": "git+https://github.com/dsherret/code-block-writer.git"
  16. },
  17. "license": "MIT",
  18. "bugs": {
  19. "url": "https://github.com/dsherret/code-block-writer/issues"
  20. },
  21. "main": "./script/mod.js",
  22. "module": "./esm/mod.js",
  23. "exports": {
  24. ".": {
  25. "import": "./esm/mod.js",
  26. "require": "./script/mod.js"
  27. }
  28. },
  29. "scripts": {
  30. "test": "node test_runner.js"
  31. },
  32. "devDependencies": {
  33. "@types/node": "^20.9.0",
  34. "picocolors": "^1.0.0",
  35. "@types/chai": "4.3",
  36. "chai": "4.3.7",
  37. "@deno/shim-deno": "~0.18.0"
  38. },
  39. "_generatedBy": "dnt@dev"
  40. }