zwift-data
Version:
Data about Zwift worlds, routes and segments
62 lines (61 loc) • 1.8 kB
JSON
{
"name": "zwift-data",
"version": "1.48.0",
"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.1",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/git": "10.0.1",
"@tsconfig/recommended": "1.0.13",
"@turf/turf": "7.3.1",
"@types/cli-progress": "3.11.6",
"@types/jest": "30.0.0",
"@types/lodash": "4.17.21",
"@types/node": "24.10.1",
"cli-progress": "3.12.0",
"jest": "30.2.0",
"lodash": "4.17.21",
"prettier": "3.7.3",
"rimraf": "6.1.2",
"semantic-release": "25.0.2",
"simple-git": "3.30.0",
"ts-jest": "29.4.5",
"typedoc": "0.28.15",
"typescript": "5.9.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"
}
}