@codewithahsan/paperclip-plugin-gsd 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/package.json ADDED
@@ -0,0 +1,62 @@
1
+ {
2
+ "name": "@codewithahsan/paperclip-plugin-gsd",
3
+ "version": "0.1.0",
4
+ "description": "GSD (Get Shit Done) plugin for Paperclip. Syncs phases, milestones, and progress from agent workspaces into Paperclip issues and UI.",
5
+ "type": "module",
6
+ "license": "MIT",
7
+ "author": "Ahsan Ayaz <ahsan@codewithahsan.dev>",
8
+ "repository": {
9
+ "type": "git",
10
+ "url": "https://github.com/AhsanAyaz/paperclip-plugin-gsd"
11
+ },
12
+ "keywords": [
13
+ "paperclip",
14
+ "plugin",
15
+ "gsd",
16
+ "get-shit-done",
17
+ "project-management",
18
+ "ai-agents",
19
+ "claude-code",
20
+ "gemini-cli"
21
+ ],
22
+ "exports": {
23
+ ".": "./dist/worker.js",
24
+ "./manifest": "./dist/manifest.js",
25
+ "./ui": "./dist/ui/index.js"
26
+ },
27
+ "paperclipPlugin": {
28
+ "manifest": "./dist/manifest.js",
29
+ "worker": "./dist/worker.js",
30
+ "ui": "./dist/ui/"
31
+ },
32
+ "files": [
33
+ "dist",
34
+ "README.md",
35
+ "LICENSE"
36
+ ],
37
+ "scripts": {
38
+ "build": "node esbuild.config.mjs",
39
+ "build:watch": "node esbuild.config.mjs --watch",
40
+ "clean": "rm -rf dist",
41
+ "typecheck": "tsc --noEmit",
42
+ "test": "vitest run",
43
+ "test:watch": "vitest",
44
+ "prepublishOnly": "npm run build"
45
+ },
46
+ "dependencies": {
47
+ "@paperclipai/plugin-sdk": "^2026.318.0"
48
+ },
49
+ "devDependencies": {
50
+ "esbuild": "^0.27.3",
51
+ "@types/node": "^24.6.0",
52
+ "@types/react": "^19.0.8",
53
+ "@types/react-dom": "^19.0.3",
54
+ "react": "^19.0.0",
55
+ "react-dom": "^19.0.0",
56
+ "typescript": "^5.7.3",
57
+ "vitest": "^3.0.0"
58
+ },
59
+ "peerDependencies": {
60
+ "react": ">=18"
61
+ }
62
+ }