-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.44 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 2.44 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
77
78
79
80
81
{
"name": "medusa-customer-analytics",
"version": "0.3.0",
"description": "Checkout funnel analytics for Medusa v2 — tracks how far each shopper got on the way to an order across a seven-rung funnel from cart to completed, with an admin dashboard, abandoned-cart product ranking, and win-back promotion drafts.",
"license": "MIT",
"keywords": [
"medusa-plugin",
"medusa-v2",
"medusa-plugin-analytics",
"medusa",
"medusajs",
"analytics",
"funnel",
"checkout-funnel",
"abandoned-cart",
"cart-abandonment",
"conversion-rate",
"ecommerce"
],
"files": [
".medusa/server",
"LICENSE",
"README.md"
],
"exports": {
"./package.json": "./package.json",
"./.medusa/server/src/modules/*": "./.medusa/server/src/modules/*/index.js",
"./providers/*": "./.medusa/server/src/providers/*/index.js",
"./admin": {
"import": "./.medusa/server/src/admin/index.mjs",
"require": "./.medusa/server/src/admin/index.js",
"default": "./.medusa/server/src/admin/index.js"
},
"./*": "./.medusa/server/src/*.js"
},
"scripts": {
"build": "medusa plugin:build",
"dev": "medusa plugin:develop",
"test": "TEST_TYPE=unit NODE_OPTIONS=--experimental-vm-modules jest --silent --runInBand --forceExit"
},
"devDependencies": {
"@medusajs/admin-sdk": "2.13.4",
"@medusajs/admin-shared": "2.13.4",
"@medusajs/cli": "2.13.4",
"@medusajs/framework": "2.13.4",
"@medusajs/icons": "2.13.4",
"@medusajs/medusa": "2.13.4",
"@medusajs/test-utils": "2.13.4",
"@medusajs/types": "2.13.4",
"@medusajs/ui": "4.0.19",
"@swc/core": "^1.7.28",
"@swc/jest": "^0.2.36",
"@tanstack/react-query": "5.64.2",
"@types/jest": "^29.5.13",
"@types/react": "^18.3.2",
"jest": "^29.7.0",
"react": "^18.3.1",
"ts-node": "10.9.2",
"typescript": "^5.6.2"
},
"peerDependencies": {
"@medusajs/admin-sdk": "^2.13.0",
"@medusajs/framework": "^2.13.0",
"@medusajs/icons": "^2.13.0",
"@medusajs/medusa": "^2.13.0",
"@medusajs/types": "^2.13.0",
"@medusajs/ui": "^4.0.0"
},
"engines": {
"node": ">=20"
},
"repository": {
"type": "git",
"url": "git+https://github.com/opencue/medusa-customer-analytics.git"
},
"bugs": {
"url": "https://github.com/opencue/medusa-customer-analytics/issues"
},
"homepage": "https://github.com/opencue/medusa-customer-analytics#readme",
"author": "Webu (https://webu.sk)"
}