-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.2 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "@tomismeta/paperclip-aperture",
"version": "0.4.5",
"type": "module",
"private": false,
"description": "The live attention layer for Paperclip, combining Aperture Core continuity with Paperclip-native operator policy.",
"repository": {
"type": "git",
"url": "git+https://github.com/tomismeta/paperclip-aperture.git"
},
"homepage": "https://github.com/tomismeta/paperclip-aperture#readme",
"bugs": {
"url": "https://github.com/tomismeta/paperclip-aperture/issues"
},
"files": [
"dist/**/*.js",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsx ./esbuild.config.ts",
"check:bundle-size": "tsx ./scripts/check-bundle-size.ts",
"clean": "find . -name .DS_Store -delete && rm -rf dist tmp *.tgz",
"dev": "tsx ./esbuild.config.ts --watch",
"dev:ui": "paperclip-plugin-dev-server --root . --ui-dir dist/ui --port 4177",
"demo:record": "tsx ./scripts/demo/capture.ts",
"eval:issue-intelligence": "tsx ./scripts/eval-issue-intelligence.ts",
"pack:check": "npm pack --dry-run",
"prepack": "pnpm build",
"release:check": "pnpm verify && pnpm pack:check",
"test": "vitest run --config ./vitest.config.ts",
"typecheck": "tsc --noEmit",
"verify": "pnpm typecheck && pnpm test && pnpm eval:issue-intelligence && pnpm build && pnpm check:bundle-size"
},
"paperclipPlugin": {
"manifest": "./dist/manifest.js",
"worker": "./dist/worker.js",
"ui": "./dist/ui/"
},
"keywords": [
"paperclip",
"plugin",
"aperture",
"focus",
"attention-management",
"human-in-the-loop",
"approval-workflows",
"supervision",
"typescript"
],
"author": "@tomismeta",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"dependencies": {
"@paperclipai/plugin-sdk": "2026.525.0",
"@tomismeta/aperture-core": "0.7.0"
},
"devDependencies": {
"@types/node": "^24.6.0",
"@types/react": "^19.0.8",
"@types/react-dom": "^19.0.3",
"esbuild": "^0.27.3",
"playwright": "^1.58.2",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"tslib": "^2.8.1",
"tsx": "^4.20.5",
"typescript": "^5.7.3",
"vitest": "^3.0.5"
},
"peerDependencies": {
"react": ">=18"
}
}