@mliebelt/pgn-types
Version:
Provide the (type) language for all the `pgn-*` packages I am developing.
51 lines (50 loc) • 1.45 kB
JSON
{
"name": "@mliebelt/pgn-types",
"version": "1.0.4",
"description": "Provide the (type) language for all the `pgn-*` packages I am developing.",
"main": "lib/index.umd.js",
"module": "lib/index.umd.js",
"types": "lib/index.umd.d.ts",
"files": [
"README.md",
"lib/index.umd.d.ts",
"lib/index.umd.js"
],
"devDependencies": {
"@rollup/plugin-commonjs": "^24.0.1",
"@rollup/plugin-node-resolve": "^15.0.0",
"@types/chai": "^4.3.4",
"@types/mocha": "^10.0.1",
"@types/node": "^18.0.0",
"chai": "^4.3.7",
"mocha": "^10.2.0",
"rollup": "^2.59.0",
"rollup-plugin-dts": "^4.1.0",
"ts-loader": "^9.2.6",
"ts-node": "^10.4.0",
"typescript": "^4.4.4"
},
"scripts": {
"clean": "rm -fr lib/*",
"build": "npm run clean && npm run mjs && npm run umd && npm run dts",
"mjs": "tsc -p tsconfig-mjs.json",
"cjs": "tsc -p tsconfig.json",
"umd": "rollup lib/mjs/index.js -c rollup.config.js -o lib/index.umd.js -f umd",
"dts": "rollup -c rollup.config-dts.js",
"test": "mocha --require ts-node/register ./test/**/*.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mliebelt/pgn-types.git"
},
"keywords": [
"pgn",
"chess"
],
"author": "Markus Liebelt",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/mliebelt/pgn-types/issues"
},
"homepage": "https://github.com/mliebelt/pgn-types#readme"
}