package.json 3.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. {
  2. "name": "hsmusic-wiki",
  3. "version": "0.1.0",
  4. "description": "static wiki software cataloguing collaborative creation",
  5. "type": "module",
  6. "main": "src/upd8.js",
  7. "bin": {
  8. "hsmusic": "./src/upd8.js"
  9. },
  10. "scripts": {
  11. "test": "tap",
  12. "dev": "eslint src && node src/upd8.js"
  13. },
  14. "imports": {
  15. "#aggregate": "./src/util/aggregate.js",
  16. "#cacheable-object": "./src/data/cacheable-object.js",
  17. "#colors": "./src/util/colors.js",
  18. "#composite": "./src/data/composite.js",
  19. "#composite/control-flow": "./src/data/composite/control-flow/index.js",
  20. "#composite/data": "./src/data/composite/data/index.js",
  21. "#composite/wiki-data": "./src/data/composite/wiki-data/index.js",
  22. "#composite/wiki-properties": "./src/data/composite/wiki-properties/index.js",
  23. "#composite/things/album": "./src/data/composite/things/album/index.js",
  24. "#composite/things/flash": "./src/data/composite/things/flash/index.js",
  25. "#composite/things/flash-act": "./src/data/composite/things/flash-act/index.js",
  26. "#composite/things/track": "./src/data/composite/things/track/index.js",
  27. "#composite/things/track-section": "./src/data/composite/things/track-section/index.js",
  28. "#content-dependencies": "./src/content/dependencies/index.js",
  29. "#content-function": "./src/content-function.js",
  30. "#cli": "./src/util/cli.js",
  31. "#data-checks": "./src/data/checks.js",
  32. "#external-links": "./src/util/external-links.js",
  33. "#find": "./src/find.js",
  34. "#html": "./src/util/html.js",
  35. "#import-heck": "./src/import-heck.js",
  36. "#language": "./src/data/language.js",
  37. "#page-specs": "./src/page/index.js",
  38. "#node-utils": "./src/util/node-utils.js",
  39. "#repl": "./src/write/build-modes/repl.js",
  40. "#replacer": "./src/util/replacer.js",
  41. "#search": "./src/search.js",
  42. "#search-spec": "./src/util/search-spec.js",
  43. "#serialize": "./src/data/serialize.js",
  44. "#sort": "./src/util/sort.js",
  45. "#sugar": "./src/util/sugar.js",
  46. "#test-lib": "./test/lib/index.js",
  47. "#thing": "./src/data/thing.js",
  48. "#things": "./src/data/things/index.js",
  49. "#thumbs": "./src/gen-thumbs.js",
  50. "#urls": "./src/util/urls.js",
  51. "#validators": "./src/data/validators.js",
  52. "#web-routes": "./src/web-routes.js",
  53. "#wiki-data": "./src/util/wiki-data.js",
  54. "#yaml": "./src/data/yaml.js"
  55. },
  56. "engines": {
  57. "node": ">= 20.9.0"
  58. },
  59. "dependencies": {
  60. "@js-temporal/polyfill": "^0.4.4",
  61. "chroma-js": "^2.4.2",
  62. "command-exists": "^1.2.9",
  63. "compress-json": "^3.0.5",
  64. "eslint": "^8.37.0",
  65. "flexsearch": "^0.7.43",
  66. "he": "^1.2.0",
  67. "image-size": "^1.0.2",
  68. "js-yaml": "^4.1.0",
  69. "marked": "^10.0.0",
  70. "msgpackr": "^1.10.2",
  71. "rimraf": "^5.0.7",
  72. "striptags": "^4.0.0-alpha.4",
  73. "word-wrap": "^1.2.3"
  74. },
  75. "license": "MIT",
  76. "devDependencies": {
  77. "chokidar": "^3.5.3",
  78. "tap": "^19.0.2",
  79. "tcompare": "^6.0.0"
  80. },
  81. "tap": {
  82. "coverage": false,
  83. "coverage-report": false
  84. }
  85. }