-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.89 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 1.89 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
{
"name": "payload-posthog-analytics",
"version": "1.0.4",
"description": "PostHog analytics dashboard plugin for Payload CMS",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./components/*": {
"types": "./dist/components/*.d.ts",
"default": "./dist/components/*.js"
}
},
"keywords": [
"payload",
"payload-cms",
"payload-plugin",
"posthog",
"analytics",
"dashboard"
],
"author": "Sam Pennington <samueljpennington64@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/sampennington/payload-posthog-analytics-plugin.git"
},
"bugs": {
"url": "https://github.com/sampennington/payload-posthog-analytics-plugin/issues"
},
"homepage": "https://github.com/sampennington/payload-posthog-analytics-plugin#readme",
"peerDependencies": {
"@payloadcms/next": "^3.0.0",
"@payloadcms/ui": "^3.0.0",
"payload": "^3.0.0",
"react": "^18.0.0 || ^19.0.0",
"react-dom": "^18.0.0 || ^19.0.0"
},
"dependencies": {
"recharts": "^3.3.0"
},
"devDependencies": {
"@jest/globals": "^30.2.0",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@types/jest": "^30.0.0",
"@types/react": "^19.0.0",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"msw": "^2.12.1",
"node-fetch": "^2.7.0",
"ts-jest": "^29.4.5",
"typescript": "^5.0.0",
"undici": "^7.16.0"
},
"scripts": {
"build": "tsc",
"clean": "rm -rf dist",
"test": "NODE_OPTIONS=--experimental-vm-modules jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"prepack": "npm run clean && npm run build"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=18.0.0"
}
}