paperclip-github-plugin 0.2.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/LICENSE +184 -0
- package/README.md +216 -0
- package/dist/manifest.js +548 -0
- package/dist/ui/index.js +5336 -0
- package/dist/ui/index.js.map +7 -0
- package/dist/worker.js +6544 -0
- package/package.json +55 -0
package/package.json
ADDED
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "paperclip-github-plugin",
|
|
3
|
+
"version": "0.2.1",
|
|
4
|
+
"description": "Paperclip plugin for synchronizing GitHub issues into Paperclip projects.",
|
|
5
|
+
"license": "Apache-2.0",
|
|
6
|
+
"type": "module",
|
|
7
|
+
"packageManager": "pnpm@10.33.0",
|
|
8
|
+
"engines": {
|
|
9
|
+
"node": ">=20"
|
|
10
|
+
},
|
|
11
|
+
"repository": {
|
|
12
|
+
"type": "git",
|
|
13
|
+
"url": "git+https://github.com/alvarosanchez/paperclip-github-plugin.git"
|
|
14
|
+
},
|
|
15
|
+
"homepage": "https://github.com/alvarosanchez/paperclip-github-plugin#readme",
|
|
16
|
+
"bugs": {
|
|
17
|
+
"url": "https://github.com/alvarosanchez/paperclip-github-plugin/issues"
|
|
18
|
+
},
|
|
19
|
+
"files": [
|
|
20
|
+
"dist",
|
|
21
|
+
"README.md",
|
|
22
|
+
"LICENSE"
|
|
23
|
+
],
|
|
24
|
+
"publishConfig": {
|
|
25
|
+
"access": "public"
|
|
26
|
+
},
|
|
27
|
+
"paperclipPlugin": {
|
|
28
|
+
"manifest": "./dist/manifest.js",
|
|
29
|
+
"worker": "./dist/worker.js",
|
|
30
|
+
"ui": "./dist/ui/"
|
|
31
|
+
},
|
|
32
|
+
"scripts": {
|
|
33
|
+
"build": "node ./scripts/build.mjs",
|
|
34
|
+
"dev": "node ./scripts/build.mjs --watch",
|
|
35
|
+
"dev:ui": "paperclip-plugin-dev-server --root . --ui-dir dist/ui --port 4177",
|
|
36
|
+
"prepack": "pnpm build",
|
|
37
|
+
"test": "tsx --test tests/plugin.spec.ts",
|
|
38
|
+
"test:e2e": "pnpm build && pnpm exec playwright install chromium && node ./scripts/e2e/run-paperclip-smoke.mjs",
|
|
39
|
+
"typecheck": "tsc --noEmit",
|
|
40
|
+
"verify:manual": "pnpm build && pnpm exec playwright install chromium && node ./scripts/e2e/manual-paperclip-verify.mjs"
|
|
41
|
+
},
|
|
42
|
+
"dependencies": {
|
|
43
|
+
"@octokit/rest": "^22.0.1",
|
|
44
|
+
"@paperclipai/plugin-sdk": "^2026.403.0",
|
|
45
|
+
"react": "^19.2.5"
|
|
46
|
+
},
|
|
47
|
+
"devDependencies": {
|
|
48
|
+
"@types/node": "24.12.2",
|
|
49
|
+
"@types/react": "19.2.14",
|
|
50
|
+
"esbuild": "0.28.0",
|
|
51
|
+
"playwright": "1.59.1",
|
|
52
|
+
"tsx": "4.21.0",
|
|
53
|
+
"typescript": "6.0.2"
|
|
54
|
+
}
|
|
55
|
+
}
|