-
Notifications
You must be signed in to change notification settings - Fork 46
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 3.19 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 3.19 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
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "echo-monorepo",
"version": "1.0.0",
"description": "Echo platform monorepo",
"private": true,
"packageManager": "pnpm@10.11.0",
"scripts": {
"dev": "turbo run dev --filter=echo-control --filter=echo-server",
"local-setup": "turbo run local-setup --filter=echo-control",
"build": "turbo run build --env-mode=loose",
"prepare": "SKIP_ENV_VALIDATION=true turbo run build --env-mode=loose --filter=./packages/sdk/* --filter=!echo-next-example --filter=!echo-vite-example --filter=!registry",
"test:unit": "pnpm -C packages/sdk/ts run build && pnpm -r --filter=!packages/app/server run test:unit",
"test:integration": "pnpm -C packages/tests/integration test",
"test:all": "pnpm run test:unit && pnpm run test:integration",
"lint": "pnpm run --recursive lint",
"lint:fix": "pnpm run --recursive lint:fix",
"type-check": "pnpm run --recursive type-check",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,js,jsx,json,md}\"",
"publish:test": "pnpm -r publish --dry-run --no-git-checks",
"publish:sdks": "pnpm --filter @merit-systems/echo-typescript-sdk publish --no-git-checks && pnpm --filter @merit-systems/echo-react-sdk publish --no-git-checks && pnpm --filter @merit-systems/echo-next-sdk publish --no-git-checks && pnpm --filter echo-start publish --no-git-checks",
"publish:sdks:test": "pnpm --filter @merit-systems/echo-typescript-sdk publish --dry-run --no-git-checks && pnpm --filter @merit-systems/echo-react-sdk publish --dry-run --no-git-checks && pnpm --filter @merit-systems/echo-next-sdk publish --dry-run --no-git-checks && pnpm --filter echo-start publish --dry-run --no-git-checks",
"version:sdks:test": "pnpm --filter @merit-systems/echo-typescript-sdk version prerelease --preid=test && pnpm --filter @merit-systems/echo-react-sdk version prerelease --preid=test && pnpm --filter @merit-systems/echo-next-sdk version prerelease --preid=test && pnpm --filter echo-start version prerelease --preid=test",
"publish:sdks:test-live": "pnpm --filter @merit-systems/echo-typescript-sdk publish --tag test --no-git-checks && pnpm --filter @merit-systems/echo-react-sdk publish --tag test --no-git-checks && pnpm --filter @merit-systems/echo-next-sdk publish --tag test --no-git-checks && pnpm --filter echo-start publish --tag test --no-git-checks"
},
"devDependencies": {
"@eslint/js": "^9.13.0",
"@typescript-eslint/eslint-plugin": "^8.34.1",
"@typescript-eslint/parser": "^8.34.1",
"eslint": "^9.29.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-unused-imports": "^4.1.4",
"prettier": "^3.5.3",
"tsup": "^8.5.0",
"turbo": "^2.5.6",
"typescript": "^5.8.3"
},
"dependencies": {
"vitest": "^3.2.3"
},
"engines": {
"node": ">=18.0.0",
"pnpm": ">=10.0.0"
},
"pnpm": {
"overrides": {
"@types/react": "19.1.10",
"@types/react-dom": "19.1.7",
"@ai-sdk/openai": "2.0.32",
"@ai-sdk/anthropic": "2.0.17",
"@ai-sdk/google": "2.0.14",
"@openrouter/ai-sdk-provider": "1.2.0"
},
"engine-strict": true
}
}