UNPKG

@timesheet/sdk

Version:
94 lines (93 loc) 2.3 kB
{ "name": "@timesheet/sdk", "version": "1.0.0", "description": "Official TypeScript SDK for the Timesheet API", "main": "dist/index.js", "module": "dist/index.mjs", "types": "dist/index.d.ts", "files": [ "dist", "README.md", "LICENSE.md", "CHANGELOG.md" ], "scripts": { "build": "tsup", "test": "jest", "test:watch": "jest --watch", "test:coverage": "jest --coverage", "lint": "eslint src --ext .ts", "lint:fix": "eslint src --ext .ts --fix", "format": "prettier --write \"src/**/*.ts\"", "format:check": "prettier --check \"src/**/*.ts\"", "typecheck": "tsc --noEmit", "prepublishOnly": "npm run build && npm run test && npm run lint", "docs": "typedoc" }, "repository": { "type": "git", "url": "git+https://github.com/timesheetIO/timesheet-typescript.git" }, "keywords": [ "timesheet", "api", "sdk", "typescript", "time-tracking", "project-management", "invoicing", "team-collaboration" ], "author": "Timesheet.io <support@timesheet.io>", "license": "Apache-2.0", "bugs": { "url": "https://github.com/timesheetIO/timesheet-typescript/issues" }, "homepage": "https://github.com/timesheetIO/timesheet-typescript#readme", "engines": { "node": ">=18.0.0" }, "dependencies": { "axios": "^1.6.5", "dayjs": "^1.11.13", "jsonwebtoken": "^9.0.2" }, "devDependencies": { "@types/dotenv": "^6.1.1", "@types/jest": "^29.5.11", "@types/jsonwebtoken": "^9.0.5", "@types/nock": "^10.0.3", "@types/node": "^20.10.6", "@typescript-eslint/eslint-plugin": "^6.17.0", "@typescript-eslint/parser": "^6.17.0", "dotenv": "^16.5.0", "eslint": "^8.56.0", "eslint-config-prettier": "^9.1.0", "eslint-plugin-prettier": "^5.1.2", "jest": "^29.7.0", "nock": "^14.0.5", "prettier": "^3.1.1", "ts-jest": "^29.1.1", "tsup": "^8.0.1", "typedoc": "^0.25.6", "typescript": "^5.3.3" }, "publishConfig": { "access": "public", "registry": "https://registry.npmjs.org/" }, "tsup": { "entry": [ "src/index.ts" ], "format": [ "cjs", "esm" ], "dts": true, "splitting": false, "sourcemap": true, "clean": true, "minify": true } }