@bopen-io/clawnet-plugin 0.0.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/README.md +33 -0
- package/dist/manifest.js +144 -0
- package/dist/manifest.js.map +7 -0
- package/dist/ui/index.js +1373 -0
- package/dist/ui/index.js.map +7 -0
- package/dist/worker.js +6912 -0
- package/dist/worker.js.map +7 -0
- package/package.json +52 -0
package/package.json
ADDED
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@bopen-io/clawnet-plugin",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"private": false,
|
|
6
|
+
"description": "Agent marketplace bridge: browse, search, and hire agents from the ClawNet registry with trust-gated attestations",
|
|
7
|
+
"scripts": {
|
|
8
|
+
"build": "node ./esbuild.config.mjs",
|
|
9
|
+
"build:rollup": "rollup -c",
|
|
10
|
+
"dev": "node ./esbuild.config.mjs --watch",
|
|
11
|
+
"dev:ui": "paperclip-plugin-dev-server --root . --ui-dir dist/ui --port 4177",
|
|
12
|
+
"test": "vitest run --config ./vitest.config.ts",
|
|
13
|
+
"typecheck": "tsc --noEmit"
|
|
14
|
+
},
|
|
15
|
+
"paperclipPlugin": {
|
|
16
|
+
"manifest": "./dist/manifest.js",
|
|
17
|
+
"worker": "./dist/worker.js",
|
|
18
|
+
"ui": "./dist/ui/"
|
|
19
|
+
},
|
|
20
|
+
"keywords": [
|
|
21
|
+
"paperclip",
|
|
22
|
+
"plugin",
|
|
23
|
+
"connector"
|
|
24
|
+
],
|
|
25
|
+
"author": "bOpen",
|
|
26
|
+
"license": "MIT",
|
|
27
|
+
"pnpm": {
|
|
28
|
+
"overrides": {
|
|
29
|
+
"@paperclipai/shared": "file:.paperclip-sdk/paperclipai-shared-0.3.1.tgz"
|
|
30
|
+
}
|
|
31
|
+
},
|
|
32
|
+
"devDependencies": {
|
|
33
|
+
"@paperclipai/shared": "file:.paperclip-sdk/paperclipai-shared-0.3.1.tgz",
|
|
34
|
+
"@paperclipai/plugin-sdk": "file:.paperclip-sdk/paperclipai-plugin-sdk-1.0.0.tgz",
|
|
35
|
+
"@rollup/plugin-node-resolve": "^16.0.1",
|
|
36
|
+
"@rollup/plugin-typescript": "^12.1.2",
|
|
37
|
+
"@types/node": "^24.6.0",
|
|
38
|
+
"@types/react": "^19.0.8",
|
|
39
|
+
"esbuild": "^0.27.3",
|
|
40
|
+
"rollup": "^4.38.0",
|
|
41
|
+
"tslib": "^2.8.1",
|
|
42
|
+
"typescript": "^5.7.3",
|
|
43
|
+
"vitest": "^3.0.5"
|
|
44
|
+
},
|
|
45
|
+
"peerDependencies": {
|
|
46
|
+
"react": ">=18"
|
|
47
|
+
},
|
|
48
|
+
"files": [
|
|
49
|
+
"dist",
|
|
50
|
+
"package.json"
|
|
51
|
+
]
|
|
52
|
+
}
|