Preview local Markdown files live in a web browser
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.

package.json 871B

123456789101112131415161718192021222324252627282930313233343536
  1. {
  2. "name": "markarth",
  3. "version": "0.1.0",
  4. "description": "Live preview local Markdown files in the browser",
  5. "main": "dist/index.js",
  6. "repository": {
  7. "type": "git",
  8. "url": "https://git.sr.ht/~simulacrumparty/markarth"
  9. },
  10. "bin": {
  11. "markarth": "dist/index.js"
  12. },
  13. "scripts": {
  14. "build": "tsc",
  15. "prepare" : "npm run build",
  16. "postversion" : "git push && git push --tags"
  17. },
  18. "keywords": [],
  19. "author": "Dylan Baker <dylan@simulacrum.party>",
  20. "license": "MIT",
  21. "dependencies": {
  22. "argparse": "^1.0.10",
  23. "chokidar": "^2.0.4",
  24. "express": "^4.16.4",
  25. "remarkable": "^1.7.1",
  26. "ws": "^6.1.2"
  27. },
  28. "devDependencies": {
  29. "@types/argparse": "^1.0.35",
  30. "@types/chokidar": "^1.7.5",
  31. "@types/express": "^4.16.0",
  32. "@types/remarkable": "^1.7.2",
  33. "@types/ws": "^6.0.1",
  34. "typescript": "^3.2.4"
  35. }
  36. }