-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.01 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 2.01 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
{
"name": "@code-first-agents/tool",
"version": "0.1.5",
"description": "A code-first-agents framework for building deterministic CLI tools that LLM agents can discover, validate, and invoke with zero guesswork. Powered by Zod schemas and structured output contracts.",
"keywords": [
"ai-agents",
"llm-tools",
"tool-use",
"zod",
"cli-tools",
"structured-output",
"deterministic-tools",
"code-first-agents"
],
"bugs": {
"url": "https://github.com/beogip/code-first-agents-tool/issues"
},
"license": "MIT",
"homepage": "https://github.com/beogip/code-first-agents-tool#readme",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/beogip/code-first-agents-tool.git"
},
"scripts": {
"dev": "bun run --watch src/index.ts",
"build": "rm -rf dist && bun build src/index.ts --outdir dist --format esm --target node --packages external && dts-bundle-generator --project tsconfig.json -o dist/index.d.ts src/index.ts",
"test": "bun test",
"lint": "biome lint .",
"format": "biome format --write .",
"check": "biome check --write .",
"attw": "attw --pack --ignore-rules cjs-resolves-to-esm",
"prepare": "test -d .git && lefthook install || true",
"prepublishOnly": "bun run build && bun run attw"
},
"peerDependencies": {
"zod": "^4.0.0"
},
"devDependencies": {
"zod": "^4.0.0",
"@arethetypeswrong/cli": "^0.18.3",
"@biomejs/biome": "^2.4.10",
"bun-types": "^1.3.11",
"dts-bundle-generator": "^9.5.1",
"lefthook": "^2.1.4",
"semantic-release": "^25.0.3",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^12.0.8",
"@semantic-release/npm": "^13.1.5",
"typescript": "^6.0.2"
}
}