@vibecontrols/plugin-sdk 2026.509.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 +22 -0
- package/README.md +206 -0
- package/boilerplate/.github/workflows/release.template.yml +57 -0
- package/boilerplate/README.md +41 -0
- package/boilerplate/bunfig.toml +13 -0
- package/boilerplate/eslint.config.base.js +36 -0
- package/boilerplate/lefthook.base.yml +10 -0
- package/boilerplate/package.template.json +52 -0
- package/boilerplate/tsconfig.base.json +20 -0
- package/dist/audit/index.d.ts +17 -0
- package/dist/audit/index.js +19 -0
- package/dist/broadcast/index.d.ts +15 -0
- package/dist/broadcast/index.js +14 -0
- package/dist/cli/index.d.ts +75 -0
- package/dist/cli/index.js +104 -0
- package/dist/config/index.d.ts +34 -0
- package/dist/config/index.js +66 -0
- package/dist/contract/index.d.ts +118 -0
- package/dist/contract/index.js +16 -0
- package/dist/http/index.d.ts +35 -0
- package/dist/http/index.js +70 -0
- package/dist/index.d.ts +15 -0
- package/dist/index.js +595 -0
- package/dist/lifecycle/index.d.ts +31 -0
- package/dist/lifecycle/index.js +30 -0
- package/dist/log/index.d.ts +22 -0
- package/dist/log/index.js +25 -0
- package/dist/providers/index.d.ts +29 -0
- package/dist/providers/index.js +38 -0
- package/dist/routes/index.d.ts +37 -0
- package/dist/routes/index.js +77 -0
- package/dist/storage/index.d.ts +36 -0
- package/dist/storage/index.js +67 -0
- package/dist/subprocess/index.d.ts +37 -0
- package/dist/subprocess/index.js +69 -0
- package/dist/telemetry/index.d.ts +27 -0
- package/dist/telemetry/index.js +41 -0
- package/dist/testing/index.d.ts +31 -0
- package/dist/testing/index.js +97 -0
- package/package.json +159 -0
package/package.json
ADDED
|
@@ -0,0 +1,159 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@vibecontrols/plugin-sdk",
|
|
3
|
+
"version": "2026.509.1",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"description": "VibeControls Plugin SDK — shared contract, lifecycle, CLI, telemetry, storage helpers for all vibe-plugin-* packages.",
|
|
6
|
+
"engines": {
|
|
7
|
+
"bun": ">=1.3.10"
|
|
8
|
+
},
|
|
9
|
+
"author": {
|
|
10
|
+
"name": "Vignesh T.V",
|
|
11
|
+
"email": "vignesh@burdenoff.com",
|
|
12
|
+
"url": "https://github.com/tvvignesh"
|
|
13
|
+
},
|
|
14
|
+
"license": "SEE LICENSE IN LICENSE",
|
|
15
|
+
"exports": {
|
|
16
|
+
".": {
|
|
17
|
+
"import": "./dist/index.js",
|
|
18
|
+
"types": "./dist/index.d.ts"
|
|
19
|
+
},
|
|
20
|
+
"./contract": {
|
|
21
|
+
"import": "./dist/contract/index.js",
|
|
22
|
+
"types": "./dist/contract/index.d.ts"
|
|
23
|
+
},
|
|
24
|
+
"./lifecycle": {
|
|
25
|
+
"import": "./dist/lifecycle/index.js",
|
|
26
|
+
"types": "./dist/lifecycle/index.d.ts"
|
|
27
|
+
},
|
|
28
|
+
"./cli": {
|
|
29
|
+
"import": "./dist/cli/index.js",
|
|
30
|
+
"types": "./dist/cli/index.d.ts"
|
|
31
|
+
},
|
|
32
|
+
"./routes": {
|
|
33
|
+
"import": "./dist/routes/index.js",
|
|
34
|
+
"types": "./dist/routes/index.d.ts"
|
|
35
|
+
},
|
|
36
|
+
"./telemetry": {
|
|
37
|
+
"import": "./dist/telemetry/index.js",
|
|
38
|
+
"types": "./dist/telemetry/index.d.ts"
|
|
39
|
+
},
|
|
40
|
+
"./log": {
|
|
41
|
+
"import": "./dist/log/index.js",
|
|
42
|
+
"types": "./dist/log/index.d.ts"
|
|
43
|
+
},
|
|
44
|
+
"./storage": {
|
|
45
|
+
"import": "./dist/storage/index.js",
|
|
46
|
+
"types": "./dist/storage/index.d.ts"
|
|
47
|
+
},
|
|
48
|
+
"./config": {
|
|
49
|
+
"import": "./dist/config/index.js",
|
|
50
|
+
"types": "./dist/config/index.d.ts"
|
|
51
|
+
},
|
|
52
|
+
"./subprocess": {
|
|
53
|
+
"import": "./dist/subprocess/index.js",
|
|
54
|
+
"types": "./dist/subprocess/index.d.ts"
|
|
55
|
+
},
|
|
56
|
+
"./http": {
|
|
57
|
+
"import": "./dist/http/index.js",
|
|
58
|
+
"types": "./dist/http/index.d.ts"
|
|
59
|
+
},
|
|
60
|
+
"./providers": {
|
|
61
|
+
"import": "./dist/providers/index.js",
|
|
62
|
+
"types": "./dist/providers/index.d.ts"
|
|
63
|
+
},
|
|
64
|
+
"./audit": {
|
|
65
|
+
"import": "./dist/audit/index.js",
|
|
66
|
+
"types": "./dist/audit/index.d.ts"
|
|
67
|
+
},
|
|
68
|
+
"./broadcast": {
|
|
69
|
+
"import": "./dist/broadcast/index.js",
|
|
70
|
+
"types": "./dist/broadcast/index.d.ts"
|
|
71
|
+
},
|
|
72
|
+
"./testing": {
|
|
73
|
+
"import": "./dist/testing/index.js",
|
|
74
|
+
"types": "./dist/testing/index.d.ts"
|
|
75
|
+
}
|
|
76
|
+
},
|
|
77
|
+
"scripts": {
|
|
78
|
+
"dev": "tsup --watch",
|
|
79
|
+
"build": "tsup",
|
|
80
|
+
"lint": "eslint ./src ./tests",
|
|
81
|
+
"lint:sanity": "if [ \"${CI:-}\" = \"true\" ]; then bun run lint -- --max-warnings 0; else bun run lint -- --max-warnings 0 --cache --cache-location .eslintcache; fi",
|
|
82
|
+
"format": "prettier . --write",
|
|
83
|
+
"format:check": "prettier . --check",
|
|
84
|
+
"type:check": "tsc --noEmit",
|
|
85
|
+
"test": "bun test tests/**/*.test.ts",
|
|
86
|
+
"knip": "knip --reporter compact",
|
|
87
|
+
"clean": "rimraf dist coverage .eslintcache",
|
|
88
|
+
"prebuild": "bun run clean",
|
|
89
|
+
"pack:check": "npm pack --dry-run",
|
|
90
|
+
"sanity": "bun run format:check && bun run lint:sanity && bun run type:check && bun run knip && bun run pack:check && bun run test && bun run build"
|
|
91
|
+
},
|
|
92
|
+
"devDependencies": {
|
|
93
|
+
"@eslint/js": "^10.0.1",
|
|
94
|
+
"@types/bun": "^1.3.9",
|
|
95
|
+
"commander": "^14.0.3",
|
|
96
|
+
"elysia": "^1.3.2",
|
|
97
|
+
"eslint": "^10.0.1",
|
|
98
|
+
"globals": "^17.3.0",
|
|
99
|
+
"knip": "^6.12.0",
|
|
100
|
+
"lefthook": "^2.1.4",
|
|
101
|
+
"prettier": "^3.8.1",
|
|
102
|
+
"rimraf": "^6.1.3",
|
|
103
|
+
"tsup": "^8.5.0",
|
|
104
|
+
"typescript": "^5.9.3",
|
|
105
|
+
"typescript-eslint": "^8.56.0"
|
|
106
|
+
},
|
|
107
|
+
"peerDependencies": {
|
|
108
|
+
"commander": ">=14.0.0",
|
|
109
|
+
"elysia": ">=1.3.0"
|
|
110
|
+
},
|
|
111
|
+
"peerDependenciesMeta": {
|
|
112
|
+
"commander": {
|
|
113
|
+
"optional": true
|
|
114
|
+
},
|
|
115
|
+
"elysia": {
|
|
116
|
+
"optional": true
|
|
117
|
+
}
|
|
118
|
+
},
|
|
119
|
+
"keywords": [
|
|
120
|
+
"vibecontrols",
|
|
121
|
+
"plugin-sdk",
|
|
122
|
+
"vibe",
|
|
123
|
+
"burdenoff"
|
|
124
|
+
],
|
|
125
|
+
"repository": {
|
|
126
|
+
"type": "git",
|
|
127
|
+
"url": "git+https://github.com/algoshred/vibecontrols-plugin-sdk.git"
|
|
128
|
+
},
|
|
129
|
+
"bugs": {
|
|
130
|
+
"url": "https://github.com/algoshred/vibecontrols-plugin-sdk/issues"
|
|
131
|
+
},
|
|
132
|
+
"homepage": "https://github.com/algoshred/vibecontrols-plugin-sdk#readme",
|
|
133
|
+
"publishConfig": {
|
|
134
|
+
"access": "public",
|
|
135
|
+
"registry": "https://registry.npmjs.org/"
|
|
136
|
+
},
|
|
137
|
+
"files": [
|
|
138
|
+
"dist/**/*",
|
|
139
|
+
"!dist/**/*.map",
|
|
140
|
+
"boilerplate/**/*",
|
|
141
|
+
"README.md",
|
|
142
|
+
"LICENSE"
|
|
143
|
+
],
|
|
144
|
+
"overrides": {
|
|
145
|
+
"lodash": ">=4.17.21",
|
|
146
|
+
"lodash-es": ">=4.17.21",
|
|
147
|
+
"dompurify": ">=3.3.4",
|
|
148
|
+
"fast-xml-parser": ">=4.5.5",
|
|
149
|
+
"@xmldom/xmldom": ">=0.8.12",
|
|
150
|
+
"brace-expansion": ">=1.1.13",
|
|
151
|
+
"follow-redirects": ">=1.15.12",
|
|
152
|
+
"smol-toml": ">=1.6.1",
|
|
153
|
+
"axios": ">=1.15.0",
|
|
154
|
+
"flatted": ">=3.4.1",
|
|
155
|
+
"yaml": ">=2.8.3",
|
|
156
|
+
"picomatch": ">=2.3.2",
|
|
157
|
+
"minimatch": ">=3.1.3"
|
|
158
|
+
}
|
|
159
|
+
}
|