123456789101112131415161718192021222324252627282930313233343536 |
- {
- "name": "markarth",
- "version": "0.1.0",
- "description": "Live preview local Markdown files in the browser",
- "main": "dist/index.js",
- "repository": {
- "type": "git",
- "url": "https://git.simulacrum.party/simulacrumparty/markarth"
- },
- "bin": {
- "markarth": "dist/index.js"
- },
- "scripts": {
- "build": "tsc",
- "prepare": "npm run build",
- "postversion": "git push && git push --tags"
- },
- "keywords": [],
- "author": "Dylan Baker <dylan@simulacrum.party>",
- "license": "MIT",
- "dependencies": {
- "argparse": "^2.0.1",
- "chokidar": "^3.5.1",
- "express": "^4.17.1",
- "marked": "^1.2.8",
- "ws": "^7.4.2"
- },
- "devDependencies": {
- "@types/argparse": "^2.0.5",
- "@types/chokidar": "^2.1.3",
- "@types/express": "^4.17.11",
- "@types/marked": "^1.2.1",
- "@types/ws": "^7.4.0",
- "typescript": "^4.1.3"
- }
- }
|