Preview local Markdown files live in a web browser
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

12345678910111213141516171819202122232425262728293031323334353637
  1. {
  2. "name": "markarth",
  3. "version": "0.3.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.simulacrum.party/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": "^2.0.1",
  23. "chokidar": "^3.5.1",
  24. "express": "^4.17.1",
  25. "highlight.js": "^10.5.0",
  26. "marked": "^1.2.8",
  27. "ws": "^7.4.2"
  28. },
  29. "devDependencies": {
  30. "@types/argparse": "^2.0.5",
  31. "@types/chokidar": "^2.1.3",
  32. "@types/express": "^4.17.11",
  33. "@types/marked": "^1.2.1",
  34. "@types/ws": "^7.4.0",
  35. "typescript": "^4.1.3"
  36. }
  37. }