-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 2.48 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 2.48 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
{
"name": "agentrewind-workspace",
"private": true,
"type": "module",
"packageManager": "pnpm@9.13.0",
"engines": {
"node": ">=20"
},
"scripts": {
"build": "pnpm -r build",
"check": "pnpm typecheck && pnpm test && pnpm build && pnpm examples:run && pnpm package:smoke",
"examples:run": "node examples/sample-agent/index.mjs && node examples/fork-replay-prompt-fix/index.mjs && node examples/trajectory-search-prompt-sweep/index.mjs && node examples/openai-compatible-support-bot/index.mjs && node examples/openai-compatible-streaming/index.mjs && node examples/openrouter-support-router/index.mjs && node examples/anthropic-tool-agent/index.mjs",
"package:smoke": "pnpm pack:packages && node scripts/package-smoke.mjs",
"pack:packages": "pnpm build && node scripts/pack-workspace.mjs",
"publish:dry-run": "pnpm release:check && pnpm build && pnpm -r publish --dry-run --no-git-checks",
"publish:npm": "pnpm release:check && pnpm build && pnpm -r publish --access public --provenance",
"release:check": "node scripts/check-versions.mjs",
"test:unit": "vitest run packages/core/test/core.test.ts packages/codec-openai/test/codec-openai.test.ts packages/codec-anthropic/test/codec-anthropic.test.ts packages/codec-openrouter/test/codec-openrouter.test.ts packages/sdk/test/sdk.test.ts --pool=forks --testTimeout=60000",
"test:cli": "pnpm build && vitest run packages/cli/test/cli.test.ts --pool=forks --testTimeout=45000",
"test:coverage": "vitest run --coverage",
"test:providers": "pnpm test:provider-forks",
"test:provider-forks": "vitest run packages/codec-openai/test/codec-openai.test.ts packages/codec-anthropic/test/codec-anthropic.test.ts packages/codec-openrouter/test/codec-openrouter.test.ts",
"test:live:provider-forks": "AGENTREWIND_LIVE_PROVIDER_FORKS=1 vitest run packages/codec-openai/test/codec-openai.test.ts packages/codec-anthropic/test/codec-anthropic.test.ts packages/codec-openrouter/test/codec-openrouter.test.ts",
"test": "pnpm test:unit && pnpm test:cli",
"typecheck": "tsc -p tsconfig.base.json --noEmit"
},
"devDependencies": {
"@vitest/coverage-v8": "^4.1.7",
"@types/node": "^25.9.1",
"tsup": "^8.5.1",
"typescript": "^5.9.3",
"vitest": "^4.1.7"
},
"repository": {
"type": "git",
"url": "git+https://github.com/faizancodes/agent-rewind.git"
},
"homepage": "https://github.com/faizancodes/agent-rewind#readme",
"bugs": {
"url": "https://github.com/faizancodes/agent-rewind/issues"
}
}