UNPKG

gedcom

Version:

a simple and readable gedcom parser

56 lines 1.35 kB
{ "name": "gedcom", "version": "3.0.4", "type": "module", "description": "a simple and readable gedcom parser", "main": "./dist/index.cjs", "module": "./dist/index.js", "exports": { ".": { "import": "./dist/index.js", "require": "./dist/index.cjs" } }, "bin": { "gedcom": "dist/cli.js" }, "files": [ "dist" ], "keywords": [ "gedcom", "format", "geneaology" ], "author": "Tom MacWright", "license": "ISC", "devDependencies": { "@biomejs/biome": "^1.9.4", "@types/graphlib": "^2.1.12", "@types/graphlib-dot": "^0.6.4", "@types/unist": "^3.0.3", "get-stdin": "^9.0.0", "graphlib": "^2.1.8", "graphlib-dot": "^0.6.4", "meow": "^13.2.0", "tsup": "^8.3.6", "typedoc": "^0.27.6", "typedoc-plugin-markdown": "^4.4.1", "typescript": "^5.7.3", "unist-util-remove": "^4.0.0", "unist-util-visit-parents": "^6.0.1", "vite": "^6.1.0", "vite-plugin-externalize-deps": "^0.9.0", "vitest": "^3.0.5" }, "repository": { "type": "git", "url": "git@github.com:tmcw/parse-gedcom.git" }, "scripts": { "test": "vitest run", "doc": "typedoc --plugin typedoc-plugin-markdown --readme none index.ts", "lint": "biome check", "build": "tsup lib/index.ts --format esm,cjs && tsup lib/cli.ts --format esm" } }