@gtrabanco/pi-web-github-pr-status 0.1.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/CHANGELOG.md +10 -0
- package/LICENSE +21 -0
- package/README.md +145 -0
- package/RELEASE-POLICY.md +43 -0
- package/dist/index.js +1427 -0
- package/package.json +67 -0
package/package.json
ADDED
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@gtrabanco/pi-web-github-pr-status",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"nextRelease": "patch",
|
|
5
|
+
"description": "PI WEB plugin that surfaces GitHub pull request status (PR number, link, CI ball, worktree state) and one-click guarded merge/close without leaving the workspace.",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"author": "gtrabanco",
|
|
8
|
+
"type": "module",
|
|
9
|
+
"keywords": [
|
|
10
|
+
"pi",
|
|
11
|
+
"pi-web",
|
|
12
|
+
"pi-web-plugin",
|
|
13
|
+
"pi-coding-agent",
|
|
14
|
+
"plugin",
|
|
15
|
+
"github",
|
|
16
|
+
"pull-request",
|
|
17
|
+
"pr",
|
|
18
|
+
"ci",
|
|
19
|
+
"merge"
|
|
20
|
+
],
|
|
21
|
+
"repository": {
|
|
22
|
+
"type": "git",
|
|
23
|
+
"url": "git+https://github.com/gtrabanco/pi-web-github-pr-status.git"
|
|
24
|
+
},
|
|
25
|
+
"bugs": {
|
|
26
|
+
"url": "https://github.com/gtrabanco/pi-web-github-pr-status/issues"
|
|
27
|
+
},
|
|
28
|
+
"homepage": "https://github.com/gtrabanco/pi-web-github-pr-status#readme",
|
|
29
|
+
"files": [
|
|
30
|
+
"dist",
|
|
31
|
+
"README.md",
|
|
32
|
+
"CHANGELOG.md",
|
|
33
|
+
"RELEASE-POLICY.md",
|
|
34
|
+
"LICENSE"
|
|
35
|
+
],
|
|
36
|
+
"publishConfig": {
|
|
37
|
+
"access": "public"
|
|
38
|
+
},
|
|
39
|
+
"piWeb": {
|
|
40
|
+
"plugins": [
|
|
41
|
+
{
|
|
42
|
+
"id": "github-pr-status",
|
|
43
|
+
"browserRoot": "dist",
|
|
44
|
+
"module": "dist/index.js"
|
|
45
|
+
}
|
|
46
|
+
]
|
|
47
|
+
},
|
|
48
|
+
"scripts": {
|
|
49
|
+
"typecheck": "tsc --noEmit",
|
|
50
|
+
"test": "bun test",
|
|
51
|
+
"build": "bun build src/index.ts --outfile dist/index.js --target browser",
|
|
52
|
+
"check": "bun run typecheck && bun run test && bun run build && bun run scripts/validate-package.ts",
|
|
53
|
+
"release:status": "bun run scripts/release.ts --status",
|
|
54
|
+
"release:patch": "bun run scripts/release.ts --set-next patch",
|
|
55
|
+
"release:minor": "bun run scripts/release.ts --set-next minor",
|
|
56
|
+
"release:major": "bun run scripts/release.ts --set-next major",
|
|
57
|
+
"publish": "bun run scripts/release.ts --publish"
|
|
58
|
+
},
|
|
59
|
+
"devDependencies": {
|
|
60
|
+
"@jmfederico/pi-web": "^1.202609.0",
|
|
61
|
+
"@types/bun": "latest",
|
|
62
|
+
"typescript": "7"
|
|
63
|
+
},
|
|
64
|
+
"peerDependencies": {
|
|
65
|
+
"typescript": "7"
|
|
66
|
+
}
|
|
67
|
+
}
|