pullfrog 0.0.1 → 0.0.195-beta.0
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/LICENSE +21 -0
- package/README.md +247 -0
- package/dist/cli.mjs +153651 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +1 -0
- package/dist/internal.d.ts +1 -0
- package/dist/internal.js +1 -0
- package/package.json +91 -20
- package/index.d.ts +0 -1
- package/index.js +0 -2
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "../index.ts";
|
package/dist/index.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "../index.ts";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "../internal/index.ts";
|
package/dist/internal.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "../internal/index.ts";
|
package/package.json
CHANGED
|
@@ -1,29 +1,100 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pullfrog",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.195-beta.0",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"bin": {
|
|
6
|
+
"pullfrog": "dist/cli.mjs",
|
|
7
|
+
"pullfrog-dev": "dist/cli.mjs",
|
|
8
|
+
"pf": "dist/cli.mjs"
|
|
9
|
+
},
|
|
4
10
|
"files": [
|
|
5
|
-
"
|
|
6
|
-
"./index.d.ts"
|
|
11
|
+
"dist/"
|
|
7
12
|
],
|
|
8
|
-
"module": "./index.js",
|
|
9
|
-
"main": "./index.js",
|
|
10
|
-
"types": "./index.d.ts",
|
|
11
|
-
"exports": {
|
|
12
|
-
".": {
|
|
13
|
-
"main": "./index.js",
|
|
14
|
-
"module": "./index.js",
|
|
15
|
-
"exports": "./index.js",
|
|
16
|
-
"types": "./index.d.ts"
|
|
17
|
-
}
|
|
18
|
-
},
|
|
19
13
|
"scripts": {
|
|
20
|
-
"
|
|
14
|
+
"test": "vitest",
|
|
15
|
+
"typecheck": "tsc --noEmit",
|
|
16
|
+
"build": "node esbuild.config.js",
|
|
17
|
+
"check:entrypoints": "node scripts/check-entrypoint-imports.ts",
|
|
18
|
+
"play": "node play.ts",
|
|
19
|
+
"runtest": "node test/run.ts",
|
|
20
|
+
"scratch": "node scratch.ts",
|
|
21
|
+
"upDeps": "pnpm up --latest",
|
|
22
|
+
"lock": "pnpm install --no-frozen-lockfile",
|
|
23
|
+
"postinstall": "node scripts/generate-proxies.ts",
|
|
24
|
+
"prepare": "cd .. && husky action/.husky"
|
|
21
25
|
},
|
|
22
26
|
"devDependencies": {
|
|
23
|
-
"@
|
|
24
|
-
"@
|
|
27
|
+
"@actions/core": "^1.11.1",
|
|
28
|
+
"@anthropic-ai/claude-code": "2.1.85",
|
|
29
|
+
"@ark/fs": "0.56.0",
|
|
30
|
+
"@ark/util": "0.56.0",
|
|
31
|
+
"@clack/prompts": "^1.2.0",
|
|
32
|
+
"@modelcontextprotocol/sdk": "^1.26.0",
|
|
33
|
+
"@octokit/plugin-throttling": "^11.0.3",
|
|
34
|
+
"@octokit/rest": "^22.0.0",
|
|
35
|
+
"@octokit/webhooks-types": "^7.6.1",
|
|
36
|
+
"@standard-schema/spec": "1.1.0",
|
|
37
|
+
"@toon-format/toon": "^1.0.0",
|
|
38
|
+
"@types/node": "^24.7.2",
|
|
39
|
+
"@types/semver": "^7.7.1",
|
|
40
|
+
"@types/turndown": "^5.0.5",
|
|
41
|
+
"agent-browser": "0.21.0",
|
|
42
|
+
"ajv": "^8.18.0",
|
|
43
|
+
"arg": "^5.0.2",
|
|
44
|
+
"arkregex": "0.0.5",
|
|
45
|
+
"arktype": "2.2.0",
|
|
46
|
+
"dotenv": "^17.2.3",
|
|
47
|
+
"esbuild": "^0.25.9",
|
|
48
|
+
"execa": "^9.6.0",
|
|
49
|
+
"fastmcp": "^3.34.0",
|
|
50
|
+
"file-type": "^21.3.0",
|
|
51
|
+
"husky": "^9.0.0",
|
|
52
|
+
"opencode-ai": "1.1.56",
|
|
53
|
+
"package-manager-detector": "^1.6.0",
|
|
54
|
+
"picocolors": "^1.1.1",
|
|
55
|
+
"semver": "^7.7.3",
|
|
56
|
+
"skills": "1.4.9",
|
|
57
|
+
"table": "^6.9.0",
|
|
58
|
+
"turndown": "^7.2.0",
|
|
59
|
+
"typescript": "^5.9.3",
|
|
60
|
+
"vitest": "^4.0.17",
|
|
61
|
+
"yaml": "^2.8.2"
|
|
62
|
+
},
|
|
63
|
+
"repository": {
|
|
64
|
+
"type": "git",
|
|
65
|
+
"url": "git+https://github.com/pullfrog/pullfrog.git"
|
|
66
|
+
},
|
|
67
|
+
"keywords": [
|
|
68
|
+
"github-actions",
|
|
69
|
+
"ai-coding-agent",
|
|
70
|
+
"code-review"
|
|
71
|
+
],
|
|
72
|
+
"author": "Pullfrog <support@pullfrog.com>",
|
|
73
|
+
"license": "MIT",
|
|
74
|
+
"bugs": {
|
|
75
|
+
"url": "https://github.com/pullfrog/pullfrog/issues"
|
|
76
|
+
},
|
|
77
|
+
"homepage": "https://github.com/pullfrog/pullfrog#readme",
|
|
78
|
+
"zshy": {
|
|
79
|
+
"exports": "./index.ts"
|
|
80
|
+
},
|
|
81
|
+
"main": "./dist/index.js",
|
|
82
|
+
"module": "./dist/index.js",
|
|
83
|
+
"types": "./dist/index.d.ts",
|
|
84
|
+
"exports": {
|
|
85
|
+
".": {
|
|
86
|
+
"@pullfrog/source": "./index.ts",
|
|
87
|
+
"types": "./dist/index.d.cts",
|
|
88
|
+
"import": "./dist/index.js",
|
|
89
|
+
"require": "./dist/index.cjs"
|
|
90
|
+
},
|
|
91
|
+
"./internal": {
|
|
92
|
+
"@pullfrog/source": "./internal/index.ts",
|
|
93
|
+
"types": "./dist/internal.d.cts",
|
|
94
|
+
"import": "./dist/internal.js",
|
|
95
|
+
"default": "./dist/internal.js"
|
|
96
|
+
},
|
|
97
|
+
"./package.json": "./package.json"
|
|
25
98
|
},
|
|
26
|
-
"
|
|
27
|
-
"npm-name": "^8.0.0"
|
|
28
|
-
}
|
|
99
|
+
"packageManager": "pnpm@10.27.0+sha512.72d699da16b1179c14ba9e64dc71c9a40988cbdc65c264cb0e489db7de917f20dcf4d64d8723625f2969ba52d4b7e2a1170682d9ac2a5dcaeaab732b7e16f04a"
|
|
29
100
|
}
|
package/index.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export const arg: string;
|
package/index.js
DELETED