chatgpt-api/apps/e2e/package.json

48 wiersze
1.8 KiB
JSON

2025-06-01 15:51:00 +00:00
{
"name": "@agentic/platform-e2e-tests",
"private": true,
2025-07-18 17:51:30 +00:00
"version": "8.4.4",
2025-06-01 15:51:00 +00:00
"description": "Internal Agentic platform E2E tests.",
"author": "Travis Fischer <travis@transitivebullsh.it>",
2025-06-20 04:05:47 +00:00
"license": "AGPL-3.0",
2025-06-01 15:51:00 +00:00
"repository": {
"type": "git",
"url": "git+https://github.com/transitive-bullshit/agentic.git",
2025-06-01 15:51:00 +00:00
"directory": "apps/e2e"
},
"type": "module",
"scripts": {
"deploy-fixtures": "dotenvx run -- tsx bin/deploy-fixtures.ts",
"deploy-fixtures:prod": "dotenvx run -o -f .env.production -- tsx bin/deploy-fixtures.ts",
2025-06-17 02:58:32 +00:00
"publish-fixtures": "dotenvx run -- tsx bin/publish-fixtures.ts",
"publish-fixtures:prod": "dotenvx run -o -f .env.production -- tsx bin/publish-fixtures.ts",
"seed-db": "dotenvx run -- tsx bin/seed-db.ts",
"seed-db:prod": "dotenvx run -o -f .env.production -- tsx bin/seed-db.ts",
2025-06-01 15:51:00 +00:00
"test": "run-s test:*",
"test:typecheck": "tsc --noEmit",
"e2e": "dotenvx run -- vitest run",
"e2e-http": "dotenvx run -- vitest run src/http-e2e.test.ts",
"e2e-mcp": "dotenvx run -- vitest run src/mcp-e2e.test.ts",
"e2e:prod": "dotenvx run -o -f .env.production -- vitest run",
"e2e-http:prod": "dotenvx run -o -f .env.production -- vitest run src/http-e2e.test.ts",
"e2e-mcp:prod": "dotenvx run -o -f .env.production -- vitest run src/mcp-e2e.test.ts"
2025-06-01 15:51:00 +00:00
},
2025-06-03 16:12:50 +00:00
"dependencies": {
2025-06-25 02:26:02 +00:00
"dotenv": "catalog:",
2025-06-03 16:12:50 +00:00
"ky": "catalog:",
"p-map": "catalog:",
2025-06-25 02:26:02 +00:00
"p-times": "catalog:",
2025-06-17 02:58:32 +00:00
"semver": "catalog:"
2025-06-03 16:12:50 +00:00
},
2025-06-01 15:51:00 +00:00
"devDependencies": {
"@agentic/platform": "workspace:*",
"@agentic/platform-api-client": "workspace:*",
2025-06-03 09:48:24 +00:00
"@agentic/platform-core": "workspace:*",
2025-06-03 16:12:50 +00:00
"@agentic/platform-fixtures": "workspace:*",
2025-06-17 02:58:32 +00:00
"@agentic/platform-types": "workspace:*",
"@modelcontextprotocol/sdk": "catalog:",
2025-06-17 02:58:32 +00:00
"@types/semver": "catalog:",
"fast-content-type-parse": "catalog:"
2025-06-01 15:51:00 +00:00
}
}