-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.93 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.93 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"private": true,
"name": "personal-intelligence-action-engine",
"description": "Personal Intelligence and Action Engine",
"scripts": {
"build": "turbo run build",
"typecheck": "turbo run typecheck",
"lint": "turbo run lint",
"test:unit": "turbo run test:unit",
"test": "turbo run test",
"format:check": "prettier --check '**/*.{ts,tsx,json,md,yaml,yml}'",
"format:fix": "prettier --write '**/*.{ts,tsx,json,md,yaml,yml}'",
"security:secrets": "bash scripts/security/check-secrets.sh",
"security:dependencies": "bash scripts/security/check-dependencies.sh",
"setup:hooks": "cp scripts/git-hooks/pre-push .git/hooks/pre-push && chmod +x .git/hooks/pre-push && echo 'Git hooks installed.'",
"ci:check": "bash scripts/ci/check-all.sh",
"db:migrate:test": "pnpm --filter @pia/db db:migrate:test",
"test:integration": "turbo run test:integration",
"eval:retrieval": "pnpm --filter @pia/evals eval:retrieval",
"eval:answers": "pnpm --filter @pia/evals eval:answers",
"test:e2e": "vitest run --config test/e2e/vitest.config.ts",
"test:security": "vitest run --config test/security/vitest.config.ts",
"preflight:install": "npx playwright install chromium webkit",
"preflight:device": "cd apps/web && npx playwright test --config test/preflight/playwright.config.ts"
},
"devDependencies": {
"@types/node": "^22.0.0",
"@types/pg": "^8.11.0",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"eslint": "^8.57.0",
"opencode-ai": "1.17.7",
"pg": "^8.13.0",
"prettier": "^3.4.0",
"tsx": "^4.22.4",
"turbo": "^2.3.0",
"typescript": "~5.7.2",
"vitest": "^2.1.0",
"yaml": "^2.9.0"
},
"engines": {
"node": ">=22",
"pnpm": ">=9"
},
"packageManager": "pnpm@9.15.9+sha512.68046141893c66fad01c079231128e9afb89ef87e2691d69e4d40eee228988295fd4682181bae55b58418c3a253bde65a505ec7c5f9403ece5cc3cd37dcf2531"
}