UNPKG

@accru/client

Version:

SDK client for Accru API

95 lines (94 loc) 2.57 kB
{ "name": "@accru/client", "private": false, "version": "0.6.1", "description": "SDK client for Accru API", "license": "MIT", "author": "Luiz Felipe Laviola <luiz@laviola.dev>", "homepage": "https://accru.co", "repository": { "type": "git", "url": "git+https://github.com/accruteam/sdk-accru-ts" }, "bugs": { "url": "https://github.com/accruteam/sdk-accru-ts/issues" }, "keywords": [ "accru", "sdk", "QuickBooks" ], "main": "./dist/index.js", "types": "./dist/index.d.ts", "files": [ "dist" ], "engines": { "node": ">=18" }, "scripts": { "build": "tsup", "watch": "tsup --watch", "start": "./scripts/run.sh", "test": "vitest -c ./test/vitest.config.ts run", "lint": "run-p -c lint:*", "lint:eslint": "eslint 'src/**/*.{ts,tsx}' --fix", "lint:tsc": "tsc --noEmit", "codegen": "graphql-codegen", "codegen:update": "graphql-codegen && yalc publish", "codegen:watch": "graphql-codegen -w", "release": "npm run build && changeset publish", "prepare": "husky" }, "dependencies": { "@apollo/client": "^3.13.6", "apollo-link-scalars": "^4.0.3", "graphql": "^16.10.0" }, "devDependencies": { "@changesets/cli": "^2.28.1", "@commitlint/cli": "^19.8.0", "@commitlint/config-conventional": "^19.8.0", "@graphql-codegen/cli": "^5.0.5", "@graphql-codegen/client-preset": "^4.7.0", "@graphql-codegen/introspection": "^4.0.3", "@graphql-codegen/schema-ast": "^4.1.0", "@graphql-typed-document-node/core": "^3.2.0", "@types/node": "^22.14.0", "@typescript-eslint/eslint-plugin": "^8.29.1", "@typescript-eslint/parser": "^8.29.1", "commitizen": "^4.3.1", "cz-conventional-changelog": "^3.3.0", "dotenv": "^16.4.7", "eslint": "^8.57.0", "eslint-config-airbnb-base": "^15.0.0", "eslint-config-prettier": "^9.1.0", "eslint-import-resolver-typescript": "^3.7.0", "eslint-plugin-import": "^2.31.0", "eslint-plugin-prettier": "^5.2.3", "husky": "^9.1.7", "lint-staged": "^15.5.0", "npm-run-all": "^4.1.5", "prettier": "^3.5.3", "slackify-markdown": "^4.4.0", "tsup": "^8.4.0", "typescript": "5.8.3", "vite-tsconfig-paths": "^5.1.4", "vitest": "^3.0.9" }, "lint-staged": { "**/*.{ts,tsx}": [ "eslint 'src/**/*.{ts,tsx}' --fix" ] }, "config": { "commitizen": { "path": "./node_modules/cz-conventional-changelog" } }, "commitlint": { "extends": [ "@commitlint/config-conventional" ] } }