{ "name": "classcharts-api", "type": "module", "version": "2.0.0", "description": "A typescript wrapper for getting information from the Classcharts API", "keywords": [ "node", "typescript", "classcharts", "class charts" ], "bugs": { "url": "https://github.com/classchartsapi/classcharts-api-js/issues" }, "repository": { "type": "git", "url": "https://github.com/classchartsapi/classcharts-api-js.git" }, "main": "./dist/index.js", "scripts": { "build": "tsc", "generateDocs": "typedoc --entryPointStrategy expand ./src", "test": "jest", "prepublishOnly": "pnpm run build", "publish": "pnpx np --no-publish && npm publish" }, "author": "James Cook", "license": "ISC", "dependencies": { "ky-universal": "^0.11.0" }, "files": [ "dist/**" ], "devDependencies": { "@types/jest": "^29.5.0", "@types/node": "^18.15.11", "@typescript-eslint/eslint-plugin": "^5.58.0", "@typescript-eslint/parser": "^5.58.0", "eslint": "^8.38.0", "eslint-config-prettier": "^8.8.0", "jest": "^29.5.0", "jest-extended": "^3.2.4", "prettier": "^2.8.7", "ts-jest": "^29.1.0", "typedoc": "^0.24.2", "typescript": "^5.0.4" }, "types": "./dist/index.d.ts", "exports": { ".": { "import": "./dist/index.js", "require": "./dist/index.js" }, "./types": "./dist/index.d.ts", "./package.json": "./package.json" } }