| 123456789101112131415161718192021222324252627 |
- {
- "name": "@pipeline/shared",
- "version": "0.0.1",
- "private": true,
- "type": "module",
- "main": "./dist/index.js",
- "types": "./dist/index.d.ts",
- "exports": {
- ".": {
- "import": "./dist/index.js",
- "types": "./dist/index.d.ts"
- },
- "./node": {
- "import": "./dist/node.js",
- "types": "./dist/node.d.ts"
- }
- },
- "scripts": {
- "build": "tsc -b",
- "typecheck": "tsc --noEmit"
- },
- "dependencies": {
- "zod": "^3.24.0",
- "openai": "^4.90.0",
- "yaml": "^2.7.0"
- }
- }
|