UNPKG

gatelogue-types

Version:

Types for loading and reading Gatelogue data

54 lines 1.41 kB
{ "name": "gatelogue-types", "version": "2.0.4+10", "license": "GPL-3.0-only", "author": { "name": "MRT Mapping Services", "url": "https://github.com/mrt-map" }, "maintainers": [ { "name": "7d", "email": "61975820+iiiii7d@users.noreply.github.com" } ], "description": "Types for loading and reading Gatelogue data", "repository": "github:mrt-map/gatelogue", "homepage": "https://mrt-map.github.io/gatelogue", "bugs": "https://github.com/mrt-map/gatelogue/issues", "readme": "README.md", "keywords": [ "gatelogue", "mrt", "minecart rapid transit" ], "type": "module", "types": "./dist/lib.d.ts", "exports": { "import": "./dist/lib.js", "require": "./dist/cjs/lib.js" }, "files": [ "dist", "tsconfig.json" ], "devDependencies": { "@eslint/js": "^9.27.0", "eslint": "^9.27.0", "eslint-config-prettier": "^10.1.5", "prettier": "^3.5.3", "typedoc": "^0.28.5", "typescript": "^5.8.3", "typescript-eslint": "^8.32.1" }, "scripts": { "test": "echo \"Error: no test specified\" && exit 1", "build": "npm run build:esm && npm run build:cjs", "build:esm": "tsc", "build:cjs": "tsc --outDir dist/cjs -m commonjs --verbatimModuleSyntax false", "lint": "eslint --fix lib.ts", "format": "prettier --write .", "doc": "typedoc", "prepublish": "cp ../README.md ." } }