@gaud_erp/paperclip-github-manager 0.3.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/README.md +69 -0
- package/dist/manifest.js +118 -0
- package/dist/manifest.js.map +7 -0
- package/dist/ui/index.js +627 -0
- package/dist/ui/index.js.map +7 -0
- package/dist/worker.js +9441 -0
- package/dist/worker.js.map +7 -0
- package/package.json +55 -0
package/package.json
ADDED
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@gaud_erp/paperclip-github-manager",
|
|
3
|
+
"version": "0.3.0",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"description": "Paperclip connector plugin for GitHub repos, PR/issue sync, and webhooks",
|
|
6
|
+
"publishConfig": {
|
|
7
|
+
"access": "public"
|
|
8
|
+
},
|
|
9
|
+
"files": [
|
|
10
|
+
"dist",
|
|
11
|
+
"README.md"
|
|
12
|
+
],
|
|
13
|
+
"scripts": {
|
|
14
|
+
"prepublishOnly": "npm run build",
|
|
15
|
+
"build": "node ./esbuild.config.mjs",
|
|
16
|
+
"build:rollup": "rollup -c",
|
|
17
|
+
"dev": "node ./esbuild.config.mjs --watch",
|
|
18
|
+
"dev:ui": "paperclip-plugin-dev-server --root . --ui-dir dist/ui --port 4177",
|
|
19
|
+
"test": "vitest run --config ./vitest.config.ts",
|
|
20
|
+
"typecheck": "tsc --noEmit"
|
|
21
|
+
},
|
|
22
|
+
"paperclipPlugin": {
|
|
23
|
+
"manifest": "./dist/manifest.js",
|
|
24
|
+
"worker": "./dist/worker.js",
|
|
25
|
+
"ui": "./dist/ui/"
|
|
26
|
+
},
|
|
27
|
+
"keywords": ["paperclip", "plugin", "connector"],
|
|
28
|
+
"author": "CUS",
|
|
29
|
+
"license": "MIT",
|
|
30
|
+
"repository": {
|
|
31
|
+
"type": "git",
|
|
32
|
+
"url": "git+https://github.com/gauderp/paperclip-github-manager.git"
|
|
33
|
+
},
|
|
34
|
+
"bugs": {
|
|
35
|
+
"url": "https://github.com/gauderp/paperclip-github-manager/issues"
|
|
36
|
+
},
|
|
37
|
+
"homepage": "https://github.com/gauderp/paperclip-github-manager#readme",
|
|
38
|
+
"dependencies": {
|
|
39
|
+
"@paperclipai/plugin-sdk": "2026.517.0"
|
|
40
|
+
},
|
|
41
|
+
"devDependencies": {
|
|
42
|
+
"@rollup/plugin-node-resolve": "^16.0.1",
|
|
43
|
+
"@rollup/plugin-typescript": "^12.1.2",
|
|
44
|
+
"@types/node": "^24.6.0",
|
|
45
|
+
"@types/react": "^19.0.8",
|
|
46
|
+
"esbuild": "^0.27.3",
|
|
47
|
+
"rollup": "^4.38.0",
|
|
48
|
+
"tslib": "^2.8.1",
|
|
49
|
+
"typescript": "^5.7.3",
|
|
50
|
+
"vitest": "^3.0.5"
|
|
51
|
+
},
|
|
52
|
+
"peerDependencies": {
|
|
53
|
+
"react": ">=18"
|
|
54
|
+
}
|
|
55
|
+
}
|