-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.56 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.56 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
{
"name": "@agent-analytics/paperclip-live-analytics-plugin",
"version": "0.1.11",
"description": "Paperclip plugin for viewing live Agent Analytics signals inside a company workspace.",
"license": "MIT",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/Agent-Analytics/paperclip-live-analytics-plugin.git"
},
"homepage": "https://github.com/Agent-Analytics/paperclip-live-analytics-plugin#readme",
"bugs": {
"url": "https://github.com/Agent-Analytics/paperclip-live-analytics-plugin/issues"
},
"keywords": [
"paperclip",
"plugin",
"analytics",
"live",
"agent-analytics"
],
"files": [
"dist/plugin-manifest.js",
"dist/worker.js",
"dist/ui/**/*.js",
"README.md",
"LICENSE",
"docs/**/*.md"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "node ./scripts/build-paperclip.mjs",
"build:demo": "vite build",
"dev": "vite",
"test": "node --test tests/*.test.mjs",
"prepack": "npm test && npm run build",
"pack:local": "npm pack",
"reinstall:local": "bash ./scripts/reinstall-paperclip-local.sh"
},
"paperclipPlugin": {
"manifest": "./dist/plugin-manifest.js",
"worker": "./dist/worker.js",
"ui": "./dist/ui/"
},
"dependencies": {
"@agent-analytics/shared-ui": "0.3.8",
"@paperclipai/plugin-sdk": "2026.318.0",
"leaflet": "^1.9.4",
"react": "^19.2.0",
"react-dom": "^19.2.0"
},
"devDependencies": {
"@vitejs/plugin-react": "^5.1.3",
"esbuild": "^0.27.0",
"vite": "^7.2.4"
}
}