PSA/packages/db/package.json
Hermes 284313f908
Some checks are pending
Bidi Control Character Guard / bidi-control-guard (push) Waiting to run
Circular Dependency Check / Check for new circular dependencies (push) Waiting to run
Citus Migration Smoke / Combined migrations on single-node Citus (push) Waiting to run
E2E Fresh Install Tests / fresh-install-e2e (push) Waiting to run
ext-v2 guardrails / Run ext-v2 guard and ESLint (push) Waiting to run
Integration Tests / Check for relevant changes (push) Waiting to run
Integration Tests / ${{ (github.event_name == 'schedule' || github.event.inputs.suite == 'full') && 'Full integration suite' || 'Tier-1 integration subset' }} (push) Blocked by required conditions
Mobile checks / Mobile lint + typecheck (push) Waiting to run
Mobile checks / Mobile unit tests (push) Waiting to run
Mobile checks / Mobile dependency audit (report) (push) Waiting to run
Mobile checks / Mobile reproducibility checks (push) Waiting to run
Secrets guard (env backups) / Ensure no tracked env backup files (push) Waiting to run
Temporal Readiness / fast-readiness (push) Waiting to run
Temporal Readiness / docker-parity (push) Waiting to run
TypeScript Type Check / Nx affected typecheck (push) Waiting to run
Unit Tests / Skipped-test budget (push) Waiting to run
Unit Tests / Nx affected unit tests (push) Waiting to run
Unit Tests / Server unit coverage (informational) (push) Waiting to run
Validate Tenant Management Schema / Check for relevant changes (push) Waiting to run
Validate Tenant Management Schema / Validate Tenant Management Schema (push) Blocked by required conditions
EE Workflows Build Guard / ee-workflows-build-guard (push) Waiting to run
Initial import of AlgaPSA codebase from PSA server
Excluded: .git, node_modules, secrets/, compose.env, assemblyscript tgz

Source: /opt/alga-psa on psa.joliet.tech
2026-06-22 16:12:17 -05:00

70 lines
1.8 KiB
JSON

{
"name": "@alga-psa/db",
"version": "0.0.1",
"private": true,
"type": "module",
"main": "./dist/index.js",
"types": "./src/index.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./src/index.ts"
},
"./models": {
"import": "./dist/models/index.js",
"types": "./src/models/index.ts"
},
"./models/user": {
"import": "./dist/models/user.js",
"types": "./src/models/user.ts"
},
"./models/userPreferences": {
"import": "./dist/models/userPreferences.js",
"types": "./src/models/userPreferences.ts"
},
"./models/tenant": {
"import": "./dist/models/tenant.js",
"types": "./src/models/tenant.ts"
},
"./models/UserSession": {
"import": "./dist/models/UserSession.js",
"types": "./src/models/UserSession.ts"
},
"./tenant": {
"import": "./dist/lib/tenant.js",
"types": "./src/lib/tenant.ts"
},
"./admin": {
"import": "./dist/lib/admin.js",
"types": "./src/lib/admin.ts"
},
"./connection": {
"import": "./dist/lib/connection.js",
"types": "./src/lib/connection.ts"
},
"./workDate": {
"import": "./dist/lib/workDate.js",
"types": "./src/lib/workDate.ts"
}
},
"scripts": {
"build": "tsc -b && if [ -d dist/db/src ]; then cp -R dist/db/src/. dist/; fi && tsc-alias -p tsconfig.json -f --resolve-full-paths",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint src/"
},
"dependencies": {
"@alga-psa/core": "file:../core",
"dotenv": "^16.4.5",
"knex": "^3.1.0",
"pg": "^8.16.0",
"pg-types": "^4.0.2",
"uuid": "^9.0.1"
},
"devDependencies": {
"@types/node": "^20.0.0",
"tsc-alias": "^1.8.16",
"typescript": "^5.7.3"
}
}