Files
hopdown/package.json
T

28 lines
686 B
JSON
Raw Normal View History

2026-08-09 15:46:11 -07:00
{
"name": "hopdown",
"version": "1.0.0",
"description": "Configurable HTML <=> Markdown converter for WYSIWYG editors.",
2026-08-10 12:20:38 -07:00
"main": "dist/js/index.js",
"module": "dist/esm/index.js",
2026-08-09 15:46:11 -07:00
"files": [
"dist/lib/"
],
2026-08-10 12:19:01 -07:00
"type": "module",
"types": "src/ts/index.d.ts",
2026-08-09 15:46:11 -07:00
"scripts": {
"tsc": "tsc -p tsconfig.json && tsc -p tsconfig-cjs.json",
"build": "npm run tsc",
"test": "npm run build && vitest"
},
"license": "CC0-1.0",
"author": "evilchili",
"devDependencies": {
"@vitest/browser-playwright": "^4.1.10",
"happy-dom": "^20.11.2",
"node-watch": "^0.7.4",
"playwright": "^1.62.1",
"typescript": "^7.0.2",
"vitest": "^4.1.10"
}
}