-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 2.17 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 2.17 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
{
"name": "typescript-utcp",
"module": "index.ts",
"type": "module",
"devDependencies": {
"@types/js-yaml": "^4.0.9",
"bun-types": "^1.2.22",
"nock": "^14.0.10",
"tsup": "^8.5.0",
"zod": "^3.25.76"
},
"peerDependencies": {
"typescript": "^5.9.2",
"zod": "^3.23.8"
},
"resolutions": {
"zod": "^3.23.8"
},
"scripts": {
"clean": "rm -rf packages/*/dist || rmdir /s /q packages\\*\\dist || true",
"build": "bun run build:core && bun run build:http && bun run build:mcp && bun run build:text && bun run build:file && bun run build:cli && bun run build:direct-call && bun run build:dotenv-loader",
"build:core": "cd packages/core && bun run build",
"build:http": "cd packages/http && bun run build",
"build:mcp": "cd packages/mcp && bun run build",
"build:text": "cd packages/text && bun run build",
"build:file": "cd packages/file && bun run build",
"build:cli": "cd packages/cli && bun run build",
"build:direct-call": "cd packages/direct-call && bun run build",
"build:dotenv-loader": "cd packages/dotenv-loader && bun run build",
"rebuild": "bun run clean && bun run build",
"test": "bun test --config tsconfig.test.json",
"version:patch": "node scripts/update-versions.js patch",
"version:minor": "node scripts/update-versions.js minor",
"version:major": "node scripts/update-versions.js major",
"version:set": "node scripts/update-versions.js set",
"publish:core": "cd packages/core && npm publish",
"publish:text": "cd packages/text && npm publish",
"publish:file": "cd packages/file && npm publish",
"publish:http": "cd packages/http && npm publish",
"publish:mcp": "cd packages/mcp && npm publish",
"publish:cli": "cd packages/cli && npm publish",
"publish:direct-call": "cd packages/direct-call && npm publish",
"publish:dotenv-loader": "cd packages/dotenv-loader && npm publish",
"publish:all": "bun run build && bun run publish:core && bun run publish:text && bun run publish:file && bun run publish:http && bun run publish:mcp && bun run publish:cli && bun run publish:direct-call && bun run publish:dotenv-loader"
},
"workspaces": [
"packages/*"
]
}