UNPKG

gedcom

Version:

a simple and readable gedcom parser

66 lines 1.51 kB
{ "name": "gedcom", "version": "3.0.9", "type": "module", "description": "a simple and readable gedcom parser", "main": "./dist/index.cjs", "module": "./dist/index.mjs", "exports": { ".": { "import": { "types": "./dist/index.d.mts", "default": "./dist/index.mjs" }, "require": { "types": "./dist/index.d.cts", "default": "./dist/index.cjs" } } }, "bin": { "gedcom": "dist/cli.mjs" }, "files": [ "dist" ], "keywords": [ "gedcom", "format", "geneaology" ], "author": "Tom MacWright", "license": "ISC", "devDependencies": { "@biomejs/biome": "^1.9.4", "@changesets/cli": "^2.29.8", "@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", "tsdown": "^0.17.4", "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/gedcom.git" }, "publishConfig": { "access": "public" }, "scripts": { "test": "vitest run", "doc": "typedoc --plugin typedoc-plugin-markdown --readme none index.ts", "lint": "biome check", "build": "tsdown" } }