pk-agent 0.7.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,98 @@
1
+ {
2
+ "name": "pk-agent",
3
+ "version": "0.7.2",
4
+ "description": "AI agents on autopilot - define in markdown, run on cron, CI/CD, or serverless",
5
+ "type": "module",
6
+ "author": "Leon Ho",
7
+ "license": "Apache-2.0",
8
+ "repository": {
9
+ "type": "git",
10
+ "url": "git+https://github.com/pk-agent/pk-agent.git"
11
+ },
12
+ "bugs": {
13
+ "url": "https://github.com/pk-agent/pk-agent/issues"
14
+ },
15
+ "homepage": "https://github.com/pk-agent/pk-agent#readme",
16
+ "keywords": [
17
+ "ai",
18
+ "agent",
19
+ "mcp",
20
+ "anthropic",
21
+ "openai",
22
+ "cli",
23
+ "llm",
24
+ "automation",
25
+ "cron",
26
+ "cicd",
27
+ "serverless",
28
+ "autopilot"
29
+ ],
30
+ "engines": {
31
+ "node": ">=20.19.0"
32
+ },
33
+ "bin": {
34
+ "pk-agent": "bin/cli.js"
35
+ },
36
+ "files": [
37
+ "bin/cli.js",
38
+ "dist",
39
+ "README.md",
40
+ "LICENSE"
41
+ ],
42
+ "scripts": {
43
+ "clean": "node -e \"require('fs').rmSync('dist',{recursive:true,force:true})\"",
44
+ "build:js": "bun build ./src/index.ts --outdir ./dist --target node --format esm --sourcemap --packages external",
45
+ "build": "bun run clean && bun run build:js",
46
+ "watch": "bun build ./src/index.ts --outdir ./dist --target node --format esm --sourcemap --packages external --watch",
47
+ "link": "npm link",
48
+ "unlink": "npm unlink",
49
+ "test": "bun test tests/",
50
+ "typecheck": "tsc --noEmit",
51
+ "check:publish-safety": "node scripts/check-publish-safety.mjs",
52
+ "prepublishOnly": "bun run build && bun run check:publish-safety && bun run test",
53
+ "pack-dry": "bun run build && npm pack --dry-run",
54
+ "release": "np",
55
+ "release:preview": "np --preview",
56
+ "release:dry": "np --preview --any-branch",
57
+ "docs:dev": "cd docs && mintlify dev",
58
+ "docs:preview": "cd docs && mintlify preview",
59
+ "generate:models": "npx tsx scripts/generate-models.ts"
60
+ },
61
+ "dependencies": {
62
+ "@ai-sdk/anthropic": "3.0.1",
63
+ "@ai-sdk/mcp": "1.0.1",
64
+ "@ai-sdk/openai": "3.0.1",
65
+ "@clack/prompts": "^0.11.0",
66
+ "@modelcontextprotocol/sdk": "^1.0.0",
67
+ "@openai/agents": "^0.4.6",
68
+ "@openai/codex-sdk": "^0.98.0",
69
+ "@openauthjs/openauth": "^0.4.3",
70
+ "ai": "6.0.3",
71
+ "chalk": "^5.5.0",
72
+ "chokidar": "^5.0.0",
73
+ "commander": "^12.0.0",
74
+ "croner": "^9.1.0",
75
+ "cronstrue": "^3.9.0",
76
+ "dotenv": "^17.2.1",
77
+ "esbuild-wasm": "0.23.1",
78
+ "fuzzysort": "^3.1.0",
79
+ "glob": "^11.0.3",
80
+ "gray-matter": "^4.0.3",
81
+ "minimatch": "^10.1.1",
82
+ "openai": "^6.18.0",
83
+ "ora": "^9.0.0",
84
+ "posthog-node": "^5.18.0",
85
+ "tree-sitter-bash": "^0.25.1",
86
+ "ulid": "^3.0.1",
87
+ "web-tree-sitter": "^0.26.3",
88
+ "yaml": "^2.8.2",
89
+ "zod": "^4.3.6"
90
+ },
91
+ "devDependencies": {
92
+ "@ai-sdk/devtools": "^0.0.1",
93
+ "@ai-sdk/provider": "^3.0.0",
94
+ "@types/bun": "^1.2.19",
95
+ "np": "^10.2.0",
96
+ "typescript": "^5.9.2"
97
+ }
98
+ }