paperclip-plugin-plica 0.5.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,81 @@
1
+ {
2
+ "name": "paperclip-plugin-plica",
3
+ "version": "0.5.0",
4
+ "packageManager": "pnpm@10.33.0",
5
+ "type": "module",
6
+ "description": "Plica cross-company HUD for Paperclip.",
7
+ "keywords": [
8
+ "paperclip",
9
+ "paperclip-plugin",
10
+ "paperclipai"
11
+ ],
12
+ "author": "nickallevato (https://allevato.io)",
13
+ "homepage": "https://allevato.io",
14
+ "repository": {
15
+ "type": "git",
16
+ "url": "git+https://github.com/nickallevato/paperclip-plica.git"
17
+ },
18
+ "license": "MIT",
19
+ "files": [
20
+ "dist",
21
+ "!dist/**/*.map",
22
+ "CHANGELOG.md"
23
+ ],
24
+ "scripts": {
25
+ "build": "node ./scripts/build-css.mjs && node ./esbuild.config.mjs",
26
+ "demo:data": "node ./scripts/gen-demo-data.mjs",
27
+ "dev": "node ./scripts/build-css.mjs && node ./esbuild.config.mjs --watch",
28
+ "test": "vitest run --config ./vitest.config.ts",
29
+ "typecheck": "tsc --noEmit",
30
+ "check:branch": "node ./scripts/check-branch-name.mjs",
31
+ "check:surface": "node ./scripts/check-plugin-surface.mjs --all",
32
+ "check:vendored": "node ./scripts/check-vendored.mjs",
33
+ "check:worktree": "node ./scripts/check-worktree.mjs",
34
+ "hooks:install": "git config core.hooksPath .githooks",
35
+ "prepublishOnly": "pnpm typecheck && pnpm build && pnpm test"
36
+ },
37
+ "paperclipPlugin": {
38
+ "manifest": "./dist/manifest.js",
39
+ "worker": "./dist/worker.js",
40
+ "ui": "./dist/ui/"
41
+ },
42
+ "devDependencies": {
43
+ "@paperclipai/plugin-sdk": "link:../../paperclip/packages/plugins/sdk",
44
+ "@paperclipai/shared": "link:../../paperclip/packages/shared",
45
+ "@tailwindcss/node": "4.3.3",
46
+ "@tailwindcss/oxide": "4.3.3",
47
+ "@tanstack/react-query": "^5.101.4",
48
+ "@testing-library/jest-dom": "^6.6.3",
49
+ "@testing-library/react": "^16.1.0",
50
+ "@testing-library/user-event": "^14.5.2",
51
+ "@types/node": "^22.20.1",
52
+ "@types/react": "^19.2.17",
53
+ "@types/react-dom": "^19.2.3",
54
+ "class-variance-authority": "^0.7.1",
55
+ "clsx": "^2.1.1",
56
+ "esbuild": "^0.28.1",
57
+ "jsdom": "^25.0.1",
58
+ "lucide-react": "^0.577.0",
59
+ "radix-ui": "^1.6.4",
60
+ "react": "^19.2.7",
61
+ "react-dom": "^19.2.7",
62
+ "react-router-dom": "^7.18.1",
63
+ "tailwind-merge": "^3.6.0",
64
+ "tailwindcss": "4.3.3",
65
+ "typescript": "^5.7.3",
66
+ "vitest": "^4.1.10"
67
+ },
68
+ "peerDependencies": {
69
+ "react": ">=18"
70
+ },
71
+ "peerDependenciesMeta": {
72
+ "react": {
73
+ "optional": true
74
+ }
75
+ },
76
+ "pnpm": {
77
+ "onlyBuiltDependencies": [
78
+ "esbuild"
79
+ ]
80
+ }
81
+ }