pullfrog 0.0.1 → 0.0.195-beta.1

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 CHANGED
@@ -1,29 +1,99 @@
1
1
  {
2
2
  "name": "pullfrog",
3
- "version": "0.0.1",
3
+ "version": "0.0.195-beta.1",
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
- "./index.js",
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
- "gh-check": "tsx --env-file=.env ghCheck.mts"
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
+ "prepare": "cd .. && husky action/.husky"
21
24
  },
22
25
  "devDependencies": {
23
- "@types/node": "^24.0.4",
24
- "@biomejs/biome": "^1.9.4"
26
+ "@actions/core": "^1.11.1",
27
+ "@anthropic-ai/claude-code": "2.1.85",
28
+ "@ark/fs": "0.56.0",
29
+ "@ark/util": "0.56.0",
30
+ "@clack/prompts": "^1.2.0",
31
+ "@modelcontextprotocol/sdk": "^1.26.0",
32
+ "@octokit/plugin-throttling": "^11.0.3",
33
+ "@octokit/rest": "^22.0.0",
34
+ "@octokit/webhooks-types": "^7.6.1",
35
+ "@standard-schema/spec": "1.1.0",
36
+ "@toon-format/toon": "^1.0.0",
37
+ "@types/node": "^24.7.2",
38
+ "@types/semver": "^7.7.1",
39
+ "@types/turndown": "^5.0.5",
40
+ "agent-browser": "0.21.0",
41
+ "ajv": "^8.18.0",
42
+ "arg": "^5.0.2",
43
+ "arkregex": "0.0.5",
44
+ "arktype": "2.2.0",
45
+ "dotenv": "^17.2.3",
46
+ "esbuild": "^0.25.9",
47
+ "execa": "^9.6.0",
48
+ "fastmcp": "^3.34.0",
49
+ "file-type": "^21.3.0",
50
+ "husky": "^9.0.0",
51
+ "opencode-ai": "1.1.56",
52
+ "package-manager-detector": "^1.6.0",
53
+ "picocolors": "^1.1.1",
54
+ "semver": "^7.7.3",
55
+ "skills": "1.4.9",
56
+ "table": "^6.9.0",
57
+ "turndown": "^7.2.0",
58
+ "typescript": "^5.9.3",
59
+ "vitest": "^4.0.17",
60
+ "yaml": "^2.8.2"
61
+ },
62
+ "repository": {
63
+ "type": "git",
64
+ "url": "git+https://github.com/pullfrog/pullfrog.git"
65
+ },
66
+ "keywords": [
67
+ "github-actions",
68
+ "ai-coding-agent",
69
+ "code-review"
70
+ ],
71
+ "author": "Pullfrog <support@pullfrog.com>",
72
+ "license": "MIT",
73
+ "bugs": {
74
+ "url": "https://github.com/pullfrog/pullfrog/issues"
75
+ },
76
+ "homepage": "https://github.com/pullfrog/pullfrog#readme",
77
+ "zshy": {
78
+ "exports": "./index.ts"
79
+ },
80
+ "main": "./dist/index.js",
81
+ "module": "./dist/index.js",
82
+ "types": "./dist/index.d.ts",
83
+ "exports": {
84
+ ".": {
85
+ "@pullfrog/source": "./index.ts",
86
+ "types": "./dist/index.d.cts",
87
+ "import": "./dist/index.js",
88
+ "require": "./dist/index.cjs"
89
+ },
90
+ "./internal": {
91
+ "@pullfrog/source": "./internal/index.ts",
92
+ "types": "./dist/internal.d.cts",
93
+ "import": "./dist/internal.js",
94
+ "default": "./dist/internal.js"
95
+ },
96
+ "./package.json": "./package.json"
25
97
  },
26
- "dependencies": {
27
- "npm-name": "^8.0.0"
28
- }
98
+ "packageManager": "pnpm@10.27.0+sha512.72d699da16b1179c14ba9e64dc71c9a40988cbdc65c264cb0e489db7de917f20dcf4d64d8723625f2969ba52d4b7e2a1170682d9ac2a5dcaeaab732b7e16f04a"
29
99
  }
package/index.d.ts DELETED
@@ -1 +0,0 @@
1
- export const arg: string;
package/index.js DELETED
@@ -1,2 +0,0 @@
1
- // this is javascript
2
- console.log("hello from js");