UNPKG

zwift-data

Version:

Data about Zwift worlds, routes and segments

61 lines (60 loc) 1.76 kB
{ "name": "zwift-data", "version": "1.44.2", "description": "Data about Zwift worlds, routes and segments", "main": "./lib/cjs/index.js", "module": "./lib/esm/index.js", "types": "./lib/types/index.d.ts", "files": [ "lib" ], "keywords": [ "zwift", "data" ], "author": { "name": "Andi Pätzold", "email": "github@andipaetzold.com", "url": "http://github.com/andipaetzold" }, "repository": { "type": "git", "url": "git+https://github.com/andipaetzold/zwift-data.git" }, "license": "MIT", "bugs": { "url": "https://github.com/andipaetzold/zwift-data/issues" }, "homepage": "https://github.com/andipaetzold/zwift-data#readme", "devDependencies": { "@octokit/rest": "22.0.0", "@semantic-release/changelog": "6.0.3", "@semantic-release/git": "10.0.1", "@tsconfig/recommended": "1.0.10", "@turf/turf": "7.2.0", "@types/jest": "29.5.14", "@types/lodash": "4.17.20", "@types/node": "22.16.5", "jest": "29.7.0", "lodash": "4.17.21", "node-fetch": "3.3.2", "prettier": "3.6.2", "rimraf": "6.0.1", "semantic-release": "24.2.7", "simple-git": "3.28.0", "ts-jest": "29.4.0", "typedoc": "0.28.7", "typescript": "5.8.3" }, "scripts": { "prepublishOnly": "npm run build", "build": "rimraf lib && npm run build:cjs && npm run build:esm", "build:cjs": "rimraf lib/cjs && tsc --module commonjs --outDir lib/cjs", "build:esm": "rimraf lib/esm && tsc --module ES2015 --outDir lib/esm", "build-docs": "rimraf docs && typedoc src/index.ts", "test": "jest", "semantic-release": "semantic-release", "update-data": "node ./scripts/update-data.mjs", "prepare-pr": "node ./scripts/prepare-pr.mjs" } }