@agilo/medusa-analytics-plugin 1.0.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,107 @@
1
+ {
2
+ "name": "@agilo/medusa-analytics-plugin",
3
+ "version": "1.0.0",
4
+ "description": "A simple analytics plugin for Medusa",
5
+ "author": "Ante Primorac <ante@agilo.com>",
6
+ "publishConfig": {
7
+ "access": "public"
8
+ },
9
+ "license": "MIT",
10
+ "files": [
11
+ ".medusa/server"
12
+ ],
13
+ "exports": {
14
+ "./package.json": "./package.json",
15
+ "./workflows": "./.medusa/server/src/workflows/index.js",
16
+ "./.medusa/server/src/modules/*": "./.medusa/server/src/modules/*/index.js",
17
+ "./modules/*": "./.medusa/server/src/modules/*/index.js",
18
+ "./providers/*": "./.medusa/server/src/providers/*/index.js",
19
+ "./admin": {
20
+ "import": "./.medusa/server/src/admin/index.mjs",
21
+ "require": "./.medusa/server/src/admin/index.js",
22
+ "default": "./.medusa/server/src/admin/index.js"
23
+ },
24
+ "./*": "./.medusa/server/src/*.js"
25
+ },
26
+ "keywords": [
27
+ "medusa",
28
+ "plugin",
29
+ "medusa-plugin-other",
30
+ "medusa-plugin",
31
+ "medusa-v2"
32
+ ],
33
+ "scripts": {
34
+ "build": "medusa plugin:build",
35
+ "dev": "medusa plugin:develop",
36
+ "prepublishOnly": "medusa plugin:build",
37
+ "test": "TEST_TYPE=integration:http NODE_OPTIONS=--experimental-vm-modules jest --silent=false --runInBand --forceExit"
38
+ },
39
+ "devDependencies": {
40
+ "@medusajs/admin-sdk": "2.8.3",
41
+ "@medusajs/cli": "2.8.3",
42
+ "@medusajs/framework": "2.8.3",
43
+ "@medusajs/icons": "2.8.3",
44
+ "@medusajs/medusa": "2.8.3",
45
+ "@medusajs/test-utils": "^2.8.3",
46
+ "@medusajs/ui": "^4.0.13",
47
+ "@mikro-orm/cli": "6.4.3",
48
+ "@mikro-orm/core": "6.4.3",
49
+ "@mikro-orm/knex": "6.4.3",
50
+ "@mikro-orm/migrations": "6.4.3",
51
+ "@mikro-orm/postgresql": "6.4.3",
52
+ "@swc/core": "1.5.7",
53
+ "@swc/jest": "^0.2.38",
54
+ "@types/jest": "^30.0.0",
55
+ "@types/jsonwebtoken": "^9.0.10",
56
+ "@types/luxon": "^3.6.2",
57
+ "@types/node": "^22.15.29",
58
+ "@types/react": "^19.1.6",
59
+ "@types/react-dom": "^19.1.5",
60
+ "awilix": "^8.0.1",
61
+ "jest": "^30.0.4",
62
+ "pg": "^8.16.0",
63
+ "pg-god": "^1.0.12",
64
+ "prop-types": "^15.8.1",
65
+ "react": "^18.0.0",
66
+ "react-dom": "^18.0.0",
67
+ "ts-jest": "^29.4.0",
68
+ "ts-node": "^10.9.2",
69
+ "typescript": "^5.8.3",
70
+ "vite": "^5.4.19",
71
+ "yalc": "^1.0.0-pre.53"
72
+ },
73
+ "peerDependencies": {
74
+ "@medusajs/admin-sdk": "2.8.3",
75
+ "@medusajs/cli": "2.8.3",
76
+ "@medusajs/framework": "2.8.3",
77
+ "@medusajs/icons": "2.8.3",
78
+ "@medusajs/medusa": "2.8.3",
79
+ "@medusajs/test-utils": "2.8.3",
80
+ "@medusajs/ui": "^4.0.13",
81
+ "@mikro-orm/cli": "6.4.3",
82
+ "@mikro-orm/core": "6.4.3",
83
+ "@mikro-orm/knex": "6.4.3",
84
+ "@mikro-orm/migrations": "6.4.3",
85
+ "@mikro-orm/postgresql": "6.4.3",
86
+ "awilix": "^8.0.1",
87
+ "pg": "^8.13.0"
88
+ },
89
+ "engines": {
90
+ "node": ">=20"
91
+ },
92
+ "dependencies": {
93
+ "@radix-ui/react-popover": "^1.1.14",
94
+ "@radix-ui/react-slot": "^1.2.3",
95
+ "class-variance-authority": "^0.7.1",
96
+ "clsx": "^2.1.1",
97
+ "date-fns": "^4.1.0",
98
+ "lucide-react": "^0.511.0",
99
+ "luxon": "^3.6.1",
100
+ "react-aria-components": "^1.10.1",
101
+ "react-day-picker": "^9.7.0",
102
+ "recharts": "^3.1.0",
103
+ "tailwind-merge": "^3.3.0",
104
+ "tailwindcss": "^4.1.8",
105
+ "tw-animate-css": "^1.3.4"
106
+ }
107
+ }