-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 1.96 KB
/
Copy pathpackage.json
File metadata and controls
83 lines (83 loc) · 1.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
{
"name": "@howells/envelope",
"version": "0.3.0",
"private": false,
"description": "Strict Zod IO wrapper around local CLI LLMs (Claude Code, Codex, Gemini), plus an AI SDK adapter.",
"type": "module",
"sideEffects": false,
"license": "MIT",
"author": "Daniel Howells",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/howells/envelope.git"
},
"bugs": {
"url": "https://github.com/howells/envelope/issues"
},
"homepage": "https://github.com/howells/envelope#readme",
"files": [
"dist"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./ai-sdk": {
"types": "./dist/ai-sdk.d.ts",
"default": "./dist/ai-sdk.js"
}
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=20"
},
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev --filter=@howells/envelope-playground",
"prepack": "pnpm build",
"test": "turbo run test",
"typecheck": "turbo run typecheck",
"prepare": "husky",
"format": "howells-format",
"lint": "turbo run lint",
"knip": "knip",
"dev:all": "turbo run dev --parallel",
"check": "pnpm typecheck && pnpm lint && pnpm test",
"check:affected": "turbo run build lint typecheck test --affected",
"clean": "turbo clean"
},
"keywords": [
"llm",
"cli",
"claude",
"codex",
"gemini",
"zod",
"ai-sdk"
],
"dependencies": {
"@ai-sdk/provider": "^3.0.10"
},
"peerDependencies": {
"zod": "^4.0.0"
},
"devDependencies": {
"@howells/lint": "^0.1.6",
"@howells/typescript-config": "^0.1.2",
"@types/node": "^25.6.0",
"husky": "^9.1.7",
"knip": "^6.11.0",
"lint-staged": "^16.4.0",
"turbo": "2.9.7",
"typescript": "^6.0.3",
"vitest": "^4.1.5",
"zod": "^4.4.2"
},
"packageManager": "pnpm@10.23.0",
"lint-staged": {
"*.{js,ts,jsx,tsx,json,jsonc,css}": "howells-format"
}
}