roadmap-gen
Version:
Professional HTML roadmap generator from YAML data with multiple themes
78 lines (77 loc) • 1.96 kB
JSON
{
"name": "roadmap-gen",
"version": "0.4.0",
"description": "Professional HTML roadmap generator from YAML data with multiple themes",
"type": "module",
"bin": {
"roadmap-gen": "./index.ts"
},
"main": "./index.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/davlgd/roadmap-gen.git"
},
"homepage": "https://github.com/davlgd/roadmap-gen#readme",
"bugs": {
"url": "https://github.com/davlgd/roadmap-gen/issues"
},
"files": [
"index.ts",
"src/",
"templates/",
"themes/",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"scripts": {
"build": "bun run index.ts",
"dev": "bun run build && bun run serve",
"serve": "bun --hot serve dist",
"clean": "rm -rf dist/*",
"test": "bun test",
"test:watch": "bun test --watch",
"lint": "eslint src/**/*.ts && editorconfig-checker",
"lint:fix": "eslint src/**/*.ts --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"typecheck": "tsc --noEmit --skipLibCheck",
"check": "bun run lint && bun run format:check && bun test",
"fix": "bun run lint:fix && bun run format",
"validate": "bun run check && bun run index.ts -s example.yml"
},
"dependencies": {
"@bomb.sh/args": "^0.3.1",
"js-yaml": "^4.1.0"
},
"engines": {
"bun": ">=1.0.0"
},
"keywords": [
"roadmap",
"yaml",
"html",
"generator",
"planning",
"project-management",
"visualization",
"themes",
"cli",
"internal",
"public",
"confidential"
],
"author": "davlgd",
"license": "Apache-2.0",
"devDependencies": {
"@types/bun": "^1.2.19",
"@types/js-yaml": "^4.0.9",
"@types/prettier": "^2.7.3",
"@typescript-eslint/eslint-plugin": "^8.39.0",
"@typescript-eslint/parser": "^8.39.0",
"editorconfig-checker": "^6.1.0",
"eslint": "^9.33.0",
"prettier": "^3.6.2",
"typescript": "^5.9.2"
}
}