{ "name": "@effigenix/api-client", "version": "0.1.0", "description": "HTTP client for the Effigenix ERP API", "type": "module", "main": "./dist/index.js", "types": "./dist/index.d.ts", "exports": { ".": { "types": "./dist/index.d.ts", "default": "./dist/index.js" } }, "scripts": { "build": "tsup", "dev": "tsup --watch", "typecheck": "tsc --noEmit", "clean": "rm -rf dist .turbo", "test": "vitest run", "test:watch": "vitest" }, "dependencies": { "@effigenix/config": "workspace:*", "@effigenix/types": "workspace:*", "axios": "^1.6.7" }, "devDependencies": { "@types/node": "^20.11.0", "tsup": "^8.0.1", "typescript": "^5.3.3", "vitest": "^1.2.2", "axios-mock-adapter": "^1.22.0" }, "tsup": { "entry": ["src/index.ts"], "format": ["esm"], "dts": true, "clean": true, "sourcemap": true, "splitting": false } }