@ambitresearch/paperclip-agent-identities 0.2.3

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,61 @@
1
+ {
2
+ "name": "@ambitresearch/paperclip-agent-identities",
3
+ "version": "0.2.3",
4
+ "packageManager": "pnpm@10.17.1",
5
+ "type": "module",
6
+ "private": false,
7
+ "description": "Per-agent identity providers and contribution tools for Paperclip",
8
+ "files": [
9
+ "dist",
10
+ "README.md",
11
+ "LICENSE",
12
+ "pnpm-lock.yaml"
13
+ ],
14
+ "scripts": {
15
+ "build": "node ./esbuild.config.mjs",
16
+ "build:rollup": "rollup -c",
17
+ "dev": "node ./esbuild.config.mjs --watch",
18
+ "dev:ui": "paperclip-plugin-dev-server --root . --ui-dir dist/ui --port 4177",
19
+ "test": "vitest run --config ./vitest.config.ts",
20
+ "typecheck": "tsc --noEmit",
21
+ "docs:dev": "vitepress dev openwiki",
22
+ "docs:build": "vitepress build openwiki",
23
+ "docs:preview": "vitepress preview openwiki"
24
+ },
25
+ "paperclipPlugin": {
26
+ "manifest": "./dist/manifest.js",
27
+ "worker": "./dist/worker.js",
28
+ "ui": "./dist/ui/"
29
+ },
30
+ "keywords": [
31
+ "paperclip",
32
+ "plugin",
33
+ "connector"
34
+ ],
35
+ "author": "Roshan Gautam",
36
+ "license": "MIT",
37
+ "devDependencies": {
38
+ "@paperclipai/plugin-sdk": "2026.707.0",
39
+ "@paperclipai/shared": "2026.707.0",
40
+ "@rollup/plugin-node-resolve": "^16.0.1",
41
+ "@rollup/plugin-typescript": "^12.1.2",
42
+ "@types/node": "^24.6.0",
43
+ "@types/react": "^19.0.8",
44
+ "@types/react-dom": "19",
45
+ "ajv": "^8.20.0",
46
+ "ajv-formats": "^3.0.1",
47
+ "esbuild": "^0.28.1",
48
+ "jsdom": "^29.1.1",
49
+ "react": "19.2.7",
50
+ "react-dom": "19",
51
+ "react-test-renderer": "19",
52
+ "rollup": "^4.38.0",
53
+ "tslib": "^2.8.1",
54
+ "typescript": "^5.7.3",
55
+ "vitepress": "1.6.4",
56
+ "vitest": "^3.0.5"
57
+ },
58
+ "peerDependencies": {
59
+ "react": ">=18"
60
+ }
61
+ }