UNPKG

psn-api

Version:

A well-tested library that lets you get trophy, user, and game data from the PlayStation Network.

119 lines (118 loc) 3.25 kB
{ "name": "psn-api", "description": "A well-tested library that lets you get trophy, user, and game data from the PlayStation Network.", "keywords": [ "psn", "playstation", "trophies", "npsso", "achievements", "ps4", "ps5" ], "version": "2.11.2", "main": "dist/index.js", "module": "dist/psn-api.esm.js", "typings": "dist/index.d.ts", "exports": { ".": { "require": "./dist/index.js", "import": "./dist/psn-api.esm.js", "types": "./dist/index.d.ts" } }, "author": "Wes Copeland", "license": "MIT", "files": [ "dist", "src" ], "scripts": { "dev": "dts watch", "playground": "esrun --watch src/__playground.ts", "build": "dts build", "prepare": "dts build", "format": "prettier --write . '**/*.{json,md,js,ts,tsx}'", "format:write": "prettier --write . '**/*.{json,md,js,ts,tsx}'", "format:check": "prettier --check . '**/*.{json,md,js,ts,tsx}'", "lint": "eslint --ignore-path .gitignore --ext .js,.ts,.tsx .", "lint:fix": "eslint --ignore-path .gitignore --ext .js,.ts,.tsx . --fix", "test": "jest --selectProjects UNIT", "test:coverage": "jest --selectProjects UNIT --coverage", "verify": "npm run format:check && npm run lint && npm run test:coverage && npm run build && npm run size", "size": "size-limit", "analyze": "size-limit --why", "semantic-release": "semantic-release" }, "dependencies": { "isomorphic-unfetch": "^3.1.0" }, "peerDependencies": {}, "devDependencies": { "@commitlint/cli": "^17.4.2", "@commitlint/config-conventional": "^17.4.2", "@digitak/esrun": "^3.2.19", "@faker-js/faker": "^7.6.0", "@size-limit/preset-small-lib": "^8.1.2", "@types/jest": "^27.5.2", "@types/node": "^16.18.12", "@typescript-eslint/eslint-plugin": "^5.50.0", "@typescript-eslint/parser": "^5.50.0", "cz-conventional-changelog": "^3.3.0", "dotenv-flow-cli": "^1.0.0", "dts-cli": "^1.6.3", "eslint": "^8.33.0", "eslint-config-prettier": "^8.6.0", "eslint-import-resolver-typescript": "^3.5.3", "eslint-plugin-import": "^2.27.5", "eslint-plugin-simple-import-sort": "^8.0.0", "eslint-plugin-sonarjs": "^0.16.0", "eslint-plugin-unicorn": "^44.0.2", "husky": "^4.3.8", "jest": "^29.4.1", "msw": "^1.1.0", "prettier": "2.7.1", "pretty-quick": "^3.1.3", "semantic-release": "^19.0.5", "size-limit": "^8.1.2", "ts-jest": "^29.0.5", "tslib": "^2.5.0", "typescript": "^4.9.5" }, "size-limit": [ { "path": "dist/psn-api.cjs.production.min.js", "limit": "10 KB", "brotli": true }, { "path": "dist/psn-api.esm.js", "limit": "10 KB", "brotli": true } ], "husky": { "hooks": { "pre-commit": "pretty-quick --staged && npm run lint", "commit-msg": "commitlint -E HUSKY_GIT_PARAMS" } }, "config": { "commitizen": { "path": "./node_modules/cz-conventional-changelog" } }, "release": { "branches": [ "master", "next" ] }, "repository": { "type": "git", "url": "https://github.com/achievements-app/psn-api.git" }, "resolutions": { "rxjs": "^6.6.0" } }