UNPKG

better-trakt

Version:

A Trakt.tv client with native Typescript support and quality of life features

60 lines 1.7 kB
{ "name": "better-trakt", "version": "0.9.1", "description": "A Trakt.tv client with native Typescript support and quality of life features", "main": "dist/index.js", "types": "dist/index.d.ts", "repository": "https://github.com/getaugur/better-trakt.git", "author": "Husky <39809509+Huskydog9988@users.noreply.github.com>", "license": "MIT", "bugs": { "url": "https://github.com/getaugur/better-trakt/issues" }, "homepage": "https://github.com/getaugur/better-trakt", "keywords": [ "trakt", "trakt.tv", "sdk", "front-end", "backend", "api" ], "dependencies": { "axios": "^1.1.3" }, "devDependencies": { "@types/chai": "^4.3.3", "@types/mocha": "^10.0.0", "@typescript-eslint/eslint-plugin": "^5.33.0", "@typescript-eslint/parser": "^5.33.0", "chai": "^4.3.6", "eslint": "^8.21.0", "eslint-config-prettier": "^8.5.0", "eslint-plugin-mocha": "^10.1.0", "eslint-plugin-prettier": "^4.2.1", "mocha": "^10.0.0", "npmignore": "^0.3.0", "nyc": "^15.1.0", "prettier": "^2.7.1", "ts-node": "^10.9.1", "typedoc": "^0.23.10", "typedoc-plugin-extras": "^2.3.0", "typedoc-plugin-mdn-links": "^2.0.0", "typedoc-plugin-missing-exports": "^1.0.0", "typescript": "^4.7.4" }, "publishConfig": { "ignore": [ "!dist/" ] }, "scripts": { "build": "tsc", "build:check": "pnpm build --noEmit", "build:docs": "typedoc --options typedoc.json", "lint": "eslint src/**/*.ts test/**/*.spec.ts", "lint:fix": "eslint src/**/*.ts --quiet --fix", "example": "node example/index.js", "test": "nyc mocha -r ts-node/register test/**/*.spec.ts" } }