quickbooks-api
Version:
A modular TypeScript SDK for seamless integration with Intuit QuickBooks APIs. Provides robust authentication handling and future-ready foundation for accounting, payments, and commerce operations.
47 lines (46 loc) • 1.26 kB
JSON
{
"name": "quickbooks-api",
"author": "JackNytely <jacknytely@gmail.com>",
"license": "MIT",
"version": "0.7.1",
"description": "A modular TypeScript SDK for seamless integration with Intuit QuickBooks APIs. Provides robust authentication handling and future-ready foundation for accounting, payments, and commerce operations.",
"type": "module",
"main": "dist/app.js",
"types": "dist/app.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/Nytely-Official/quickbooks-api.git"
},
"keywords": [
"quickbooks",
"intuit",
"oauth2",
"authentication",
"api"
],
"scripts": {
"build": "bun tsc && tsc-alias",
"test": "bun test __tests__ --timeout 15000",
"test:filtered": "bun test __live-tests__ -t$1 --timeout 15000",
"test:live": "bun test __live-tests__ --timeout 15000",
"publish:package": "bun run build && bun run test && bun publish"
},
"dependencies": {
"class-transformer": "^0.5.1"
},
"devDependencies": {
"@types/bun": "latest",
"@types/express": "^5.0.0",
"express": "^4.21.2",
"tsc-alias": "^1.8.10",
"typescript": "^5.7.3"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/",
"tag": "latest"
}
}