@lvrdai/paperclip-slack 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/dist/manifest.js +8017 -0
- package/dist/manifest.js.map +7 -0
- package/dist/worker.js +9666 -0
- package/dist/worker.js.map +7 -0
- package/package.json +35 -0
package/package.json
ADDED
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@lvrdai/paperclip-slack",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "LVRD Slack connector for Paperclip — agent tools backed by the customer's Slack connection in LVRD's Nango.",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"repository": {
|
|
8
|
+
"type": "git",
|
|
9
|
+
"url": "https://github.com/lvrdai/paperclip-plugins.git",
|
|
10
|
+
"directory": "packages/connectors/slack"
|
|
11
|
+
},
|
|
12
|
+
"paperclipPlugin": {
|
|
13
|
+
"manifest": "./dist/manifest.js",
|
|
14
|
+
"worker": "./dist/worker.js"
|
|
15
|
+
},
|
|
16
|
+
"files": [
|
|
17
|
+
"dist"
|
|
18
|
+
],
|
|
19
|
+
"engines": {
|
|
20
|
+
"node": ">=22"
|
|
21
|
+
},
|
|
22
|
+
"scripts": {
|
|
23
|
+
"build": "node build.mjs",
|
|
24
|
+
"typecheck": "tsc -p tsconfig.json --noEmit",
|
|
25
|
+
"test": "vitest run"
|
|
26
|
+
},
|
|
27
|
+
"devDependencies": {
|
|
28
|
+
"@lvrdai/paperclip-connector-core": "workspace:*",
|
|
29
|
+
"@paperclipai/plugin-sdk": "2026.529.0",
|
|
30
|
+
"@types/node": "^22.19.21",
|
|
31
|
+
"esbuild": "^0.25.0",
|
|
32
|
+
"typescript": "^5.8.0",
|
|
33
|
+
"vitest": "^3.0.0"
|
|
34
|
+
}
|
|
35
|
+
}
|