-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.06 KB
/
package.json
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
{
"name": "@intuio/medusa-push-notification",
"version": "1.0.1",
"description": "Push notification plugin for Medusa e-commerce",
"main": "index.js",
"author": "Intuio",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsc",
"prepare": "cross-env NODE_ENV=production npm run build",
"watch": "tsc --watch"
},
"peerDependencies": {
"@medusajs/medusa": "^1.12.0",
"typeorm": "^0.3.16",
"web-push": "^3.6.1"
},
"dependencies": {
"web-push": "^3.6.1",
"medusa-core-utils": "^1.2.0"
},
"devDependencies": {
"@medusajs/medusa": "^1.12.0",
"@types/web-push": "^3.3.2",
"@types/express": "^4.17.13",
"@types/node": "^16.11.45",
"cross-env": "^7.0.3",
"typescript": "^4.5.5"
},
"repository": {
"type": "git",
"url": "https://github.com/intuio-io/medusa-push-notification"
},
"keywords": [
"medusa",
"medusa-plugin",
"push-notification",
"medusa-push-notifications",
"ecommerce",
"intuio"
],
"engines": {
"node": ">=18"
}
}