mark-mark/package.json
2025-06-13 17:06:47 -04:00

37 lines
800 B
JSON

{
"name": "mark-mark-parsers-renderers",
"version": "0.1.0",
"description": "A TypeScript MarkMark parser/renderer collection",
"homepage": "https://garrettmills.dev/markmark",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"directories": {
"lib": "lib"
},
"files": [
"lib/**/*"
],
"repository": {
"type": "git",
"url": "https://code.garrettmills.dev/garrettmills/mark-mark"
},
"scripts": {
"build": "rimraf lib && tsc"
},
"keywords": [
"markmark",
"bookmarks"
],
"author": "Garrett Mills <shout@garrettmills.dev>",
"license": "AGPL-3.0-only",
"packageManager": "pnpm@10.6.5",
"devDependencies": {
"rimraf": "^6.0.1",
"typescript": "^5.8.3"
},
"dependencies": {
"hasha": "^6.0.0",
"marked": "^15.0.12"
}
}