@superclawd-ai/pipelines 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,120 @@
1
+ {
2
+ "name": "@superclawd-ai/pipelines",
3
+ "version": "0.1.0",
4
+ "private": false,
5
+ "description": "Turn your board into an autonomous pipeline \u2014 a local, opt-in SuperClawd extension that runs your own Claude on your tickets and opens PRs for review.",
6
+ "author": "SuperClawd <support@superclawd.com>",
7
+ "license": "SEE LICENSE IN LICENSE",
8
+ "homepage": "https://superclawd.com",
9
+ "repository": {
10
+ "type": "git",
11
+ "url": "https://github.com/superclawd-ai/superclawd"
12
+ },
13
+ "bugs": {
14
+ "url": "https://github.com/superclawd-ai/superclawd/issues"
15
+ },
16
+ "keywords": [
17
+ "superclawd",
18
+ "pipelines",
19
+ "claude-code",
20
+ "claude",
21
+ "autonomous",
22
+ "ai-agent",
23
+ "linear",
24
+ "jira",
25
+ "kanban",
26
+ "pull-request"
27
+ ],
28
+ "engines": {
29
+ "node": ">=20"
30
+ },
31
+ "type": "module",
32
+ "main": "dist-server/index.mjs",
33
+ "files": [
34
+ "dist",
35
+ "dist-server",
36
+ "README.md",
37
+ "LICENSE"
38
+ ],
39
+ "scripts": {
40
+ "dev": "concurrently -k -n api,web -c blue,green \"pnpm dev:api\" \"pnpm dev:web\"",
41
+ "dev:api": "PIPELINES_BACKEND=mock PIPELINES_PUBLIC_PORT=53210 tsx watch server/index.ts",
42
+ "dev:web": "vite",
43
+ "dev:local": "concurrently -k -n api,web -c blue,green \"pnpm dev:api:local\" \"pnpm dev:web\"",
44
+ "dev:api:local": "SUPERCLAWD_MCP_API_URL=https://mcp-api.superclawd.dev SUPERCLAWD_API_URL=https://api.superclawd.dev PIPELINES_PUBLIC_PORT=53210 tsx watch server/index.ts",
45
+ "build": "node build.mjs",
46
+ "prepublishOnly": "npm run build",
47
+ "typecheck": "tsc --noEmit",
48
+ "test": "tsx test/runtime.test.ts && tsx test/persist.test.ts && tsx test/board-http.test.ts && tsx test/token-refresh.test.ts && tsx test/connection-sync.test.ts && tsx test/git.test.ts && tsx test/git-rebase.test.ts && tsx test/resume-preamble.test.ts && tsx test/pr-monitor.test.ts && tsx test/multi-pr.test.ts && tsx test/dependencies.test.ts && tsx test/sandbox.test.ts && tsx test/scheduler.test.ts && tsx test/linear.test.ts && tsx test/jira.test.ts && tsx test/asana.test.ts && tsx test/clickup.test.ts && tsx test/monday.test.ts && tsx test/vendor-util.test.ts && tsx test/public-api.test.ts && tsx test/mcp.test.ts",
49
+ "preview": "vite preview",
50
+ "lint": "eslint 'src/**/*.{ts,tsx}' 'server/**/*.ts'",
51
+ "format": "prettier --check 'src/**/*.{ts,tsx}' 'server/**/*.ts'",
52
+ "format:fix": "prettier --write 'src/**/*.{ts,tsx}' 'server/**/*.ts'"
53
+ },
54
+ "dependencies": {
55
+ "@modelcontextprotocol/sdk": "^1.7.0",
56
+ "@scalar/api-reference": "^1.62.5",
57
+ "cors": "^2.8.5",
58
+ "express": "^4.21.2",
59
+ "sequelize": "^6.37.7",
60
+ "sqlite3": "^5.1.7",
61
+ "umzug": "^3.8.2",
62
+ "zod": "^3.24.2"
63
+ },
64
+ "devDependencies": {
65
+ "@eslint/js": "^9.39.1",
66
+ "@huggingface/transformers": "^4.2.0",
67
+ "@radix-ui/react-alert-dialog": "^1.1.15",
68
+ "@radix-ui/react-avatar": "^1.1.11",
69
+ "@radix-ui/react-checkbox": "^1.3.3",
70
+ "@radix-ui/react-collapsible": "^1.1.12",
71
+ "@radix-ui/react-dialog": "^1.1.15",
72
+ "@radix-ui/react-dropdown-menu": "^2.1.16",
73
+ "@radix-ui/react-label": "^2.1.8",
74
+ "@radix-ui/react-popover": "^1.1.15",
75
+ "@radix-ui/react-progress": "^1.1.8",
76
+ "@radix-ui/react-radio-group": "^1.3.8",
77
+ "@radix-ui/react-scroll-area": "^1.2.10",
78
+ "@radix-ui/react-select": "^2.2.6",
79
+ "@radix-ui/react-separator": "^1.1.8",
80
+ "@radix-ui/react-slot": "^1.2.4",
81
+ "@radix-ui/react-switch": "^1.2.6",
82
+ "@radix-ui/react-tabs": "^1.1.13",
83
+ "@radix-ui/react-toast": "^1.2.15",
84
+ "@radix-ui/react-tooltip": "^1.2.8",
85
+ "@tanstack/react-query": "^5.90.11",
86
+ "@types/cors": "^2.8.17",
87
+ "@types/express": "^4.17.21",
88
+ "@types/node": "^25.0.2",
89
+ "@types/react": "^18.3.12",
90
+ "@types/react-dom": "^18.3.1",
91
+ "@typescript-eslint/eslint-plugin": "^8.44.1",
92
+ "@typescript-eslint/parser": "^8.44.1",
93
+ "@uiw/react-md-editor": "^4.0.11",
94
+ "@vitejs/plugin-react": "^4.3.4",
95
+ "autoprefixer": "^10.4.22",
96
+ "class-variance-authority": "^0.7.1",
97
+ "clsx": "^2.1.1",
98
+ "concurrently": "^9.1.0",
99
+ "esbuild": "^0.24.0",
100
+ "eslint": "^9.36.0",
101
+ "eslint-config-prettier": "^10.1.8",
102
+ "eslint-plugin-prettier": "^5.5.4",
103
+ "eslint-plugin-react-hooks": "^5.1.0",
104
+ "eslint-plugin-react-refresh": "^0.4.16",
105
+ "lucide-react": "^0.555.0",
106
+ "postcss": "^8.5.6",
107
+ "prettier": "^3.6.2",
108
+ "react": "^18.3.1",
109
+ "react-dom": "^18.3.1",
110
+ "react-markdown": "^10.1.0",
111
+ "react-router-dom": "^7.9.6",
112
+ "remark-gfm": "^4.0.0",
113
+ "tailwind-merge": "^3.4.0",
114
+ "tailwindcss": "3",
115
+ "tailwindcss-animate": "^1.0.7",
116
+ "tsx": "^4.19.2",
117
+ "typescript": "^5.9.2",
118
+ "vite": "^6.0.5"
119
+ }
120
+ }