{ "name": "@alga-psa/billing", "version": "0.1.0", "private": true, "main": "./dist/index.mjs", "types": "./src/index.ts", "exports": { ".": { "types": "./src/index.ts", "import": "./dist/index.mjs" }, "./actions": { "types": "./src/actions/index.ts", "import": "./dist/actions/index.mjs" }, "./runtime": { "types": "./src/runtime.ts", "import": "./dist/runtime.mjs" }, "./components": { "types": "./src/components/index.ts", "import": "./dist/components/index.mjs" }, "./models": { "types": "./src/models/index.ts", "import": "./dist/models/index.mjs" }, "./schemas": { "types": "./src/schemas/index.ts", "import": "./dist/schemas/index.mjs" }, "./services": { "types": "./src/services/index.ts", "import": "./dist/services/index.mjs" } }, "scripts": { "build": "tsup", "test": "vitest run", "typecheck": "tsc --noEmit" }, "dependencies": { "@alga-psa/authorization": "*", "@alga-psa/core": "*", "@alga-psa/db": "*", "@alga-psa/documents": "*", "@alga-psa/shared": "*", "@alga-psa/storage": "*", "@alga-psa/types": "*", "@alga-psa/event-bus": "*", "@alga-psa/integrations": "*", "@alga-psa/validation": "*", "@alga-psa/workflow-streams": "*", "@alga-psa/workflows": "*", "zod": "^3.22.4" }, "peerDependencies": { "react": "^18.0.0 || ^19.0.0", "react-dom": "^18.0.0 || ^19.0.0" }, "devDependencies": { "typescript": "^5.3.0", "tsup": "^8.0.0" } }