mark-mark/package.json

37 lines
782 B
JSON
Raw Normal View History

2025-06-13 21:00:15 +00:00
{
"name": "mark-mark",
"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"
}
}