-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
132 lines (132 loc) · 3.96 KB
/
package.json
File metadata and controls
132 lines (132 loc) · 3.96 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
{
"name": "@ai-sdk-tool/parser",
"version": "4.1.3",
"description": "AI SDK tool-calling middleware with multi-agent orchestration and benchmark harness",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/KIM3310/stage-pilot"
},
"author": "Doeon Kim",
"homepage": "https://github.com/KIM3310/stage-pilot#readme",
"bugs": {
"url": "https://github.com/KIM3310/stage-pilot/issues"
},
"keywords": [
"ai-sdk",
"tool-calling",
"llm-reliability",
"parser",
"stagepilot",
"benchmark"
],
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./community": {
"types": "./dist/community.d.ts",
"import": "./dist/community.js",
"require": "./dist/community.cjs"
},
"./rxml": {
"types": "./dist/rxml.d.ts",
"import": "./dist/rxml.js",
"require": "./dist/rxml.cjs"
},
"./rjson": {
"types": "./dist/rjson.d.ts",
"import": "./dist/rjson.js",
"require": "./dist/rjson.cjs"
},
"./schema-coerce": {
"types": "./dist/schema-coerce.d.ts",
"import": "./dist/schema-coerce.js",
"require": "./dist/schema-coerce.cjs"
}
},
"files": [
"dist/**/*"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "npm run clean && tsup --tsconfig tsconfig.build.json",
"build:watch": "npm run clean && tsup --watch --tsconfig tsconfig.build.json",
"clean": "rimraf dist *.tsbuildinfo",
"clean:repo": "bash scripts/clean-local-artifacts.sh",
"typecheck": "tsc --noEmit",
"test": "NODE_OPTIONS=--disable-warning=ExperimentalWarning vitest run",
"check:biome": "biome check",
"check:types": "tsc --noEmit",
"check": "run-p check:*",
"verify": "npm run check && npm test && npm run build",
"fmt:biome": "biome check --write",
"fmt": "run-p fmt:*",
"changeset": "changeset",
"ci:release": "npm run build && changeset publish",
"ci:version": "changeset version",
"demo:stagepilot": "tsx src/examples/stagepilot-run.ts",
"bench:stagepilot": "tsx src/examples/stagepilot-benchmark.ts",
"api:stagepilot": "tsx src/bin/stagepilot-api.ts",
"api:benchlab": "tsx src/bin/benchlab-api.ts",
"exercise:runtime": "node scripts/exercise-runtime-scorecard.mjs",
"load:runtime": "tsx scripts/load-runtime.ts",
"load:k6": "k6 run scripts/k6-runtime-scorecard.js",
"datadog:plan": "node scripts/datadog-assets.mjs plan",
"datadog:sync": "node scripts/datadog-assets.mjs sync",
"deploy:stagepilot": "bash scripts/deploy-stagepilot.sh",
"smoke:stagepilot": "bash scripts/smoke-stagepilot.sh"
},
"dependencies": {
"@ai-sdk/openai": "^3.0.53",
"@ai-sdk/provider": "3.0.8",
"@ai-sdk/provider-utils": "4.0.15",
"@opentelemetry/api": "^1.9.1",
"@opentelemetry/auto-instrumentations-node": "^0.52.1",
"@opentelemetry/exporter-trace-otlp-http": "^0.56.0",
"@opentelemetry/resources": "^1.30.1",
"@opentelemetry/sdk-node": "^0.56.0",
"@opentelemetry/semantic-conventions": "^1.40.0",
"dedent": "^1.7.2",
"yaml": "^2.8.3"
},
"devDependencies": {
"@ai-sdk/openai-compatible": "2.0.30",
"@biomejs/biome": "2.4.4",
"@changesets/cli": "2.29.8",
"@rollup/rollup-darwin-arm64": "^4.60.1",
"@types/node": "^25.6.0",
"@vitest/coverage-v8": "^4.1.4",
"ai": "6.0.97",
"globals": "^17.5.0",
"husky": "^9.1.7",
"jiti": "^2.6.1",
"npm-run-all": "^4.1.5",
"rimraf": "^6.1.3",
"tsup": "^8.5.1",
"tsx": "^4.21.0",
"typescript": "5.9.3",
"ultracite": "7.2.3",
"vite": "^7.3.2",
"vitest": "^4.1.4",
"zod": "^4.3.6"
},
"packageManager": "pnpm@9.14.4",
"engines": {
"node": ">=18",
"pnpm": ">=9"
},
"license": "Apache-2.0",
"pnpm": {
"overrides": {
"vite": "^7.3.2"
}
}
}