UNPKG

pgnify

Version:

A lightning fast [PGN](https://en.wikipedia.org/wiki/Portable_Game_Notation) parser.

46 lines 1.02 kB
{ "name": "pgnify", "version": "1.1.6", "main": "dist/index.js", "author": { "name": "Melvin Doucet", "email": "melv.douc@gmail.com", "url": "https://www.melvin-doucet.com" }, "keywords": [ "PGN", "parser", "chess" ], "license": "MIT", "scripts": { "test": "tsx --test", "bench": "tsx ./benchmarks/benchmarks.ts", "build": "rm -rf dist/* && npx tsup src/index.ts --dts --format=cjs,esm", "prepublishOnly": "npm run build" }, "repository": { "type": "git", "url": "git+https://github.com/MelvDouc/pgnify.git" }, "type": "module", "exports": { "require": { "types": "./dist/index.d.cts", "default": "./dist/index.cjs" }, "import": { "types": "./dist/index.d.ts", "default": "./dist/index.js" } }, "devDependencies": { "@types/chai": "^4.3.11", "@types/node": "^20.10.5", "chai": "^4.3.10", "mitata": "^0.1.6", "tsup": "^8.0.1", "tsx": "^4.7.0", "typescript": "^5.3.2" } }