UNPKG

typerinth

Version:

A TypeScript library for interacting with the Modrinth API.

65 lines 1.88 kB
{ "name": "typerinth", "version": "1.2.0", "description": "A TypeScript library for interacting with the Modrinth API.", "main": "dist/index.js", "types": "dist/index.d.ts", "scripts": { "build": "tsc", "test": "tsc && jest", "test:unit": "tsc && jest tests/unit", "test:integration": "tsc && jest tests/integration", "publish": "tsc && npm publish", "format": "prettier --write 'src/**/*.{ts,tsx}'", "testapp": "tsc && bun ./testapp/index.ts", "testapp2": "tsc && node ./jstestapp/index.js", "docs": "typedoc --options typedoc.json", "opendocs": "bun run docs && open ./docs/index.html" }, "repository": { "type": "git", "url": "git+https://github.com/KartoffelChipss/Typerinth.git" }, "bugs": { "url": "https://github.com/KartoffelChipss/Typerinth/issues" }, "homepage": "https://typerinth.js.org", "author": { "name": "Jan Straßburger", "email": "contact@strassburger.org", "url": "https://strassburger.org/" }, "keywords": [ "modrinth", "modrinth-api", "modrinth-ts", "modrinth-api-ts", "modrinth.ts", "modrinth.js", "typescript", "api", "library", "wrapper", "minecraft", "minecraft-mods", "minecraft-launcher" ], "license": "MIT", "readme": "README.md", "devDependencies": { "@types/bun": "latest", "@types/jest": "^29.5.12", "@types/node": "^22.7.4", "jest": "^29.7.0", "prettier": "^3.5.3", "ts-jest": "^29.1.5", "typedoc": "^0.27.9", "typedoc-github-theme": "^0.2.1" }, "peerDependencies": { "typescript": "^5.6.2" }, "dependencies": { "node-cache": "^5.1.2" } }