-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.04 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.04 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
{
"name": "medusa-file-github",
"version": "0.0.7",
"description": "Simple Medusa plugin for using Github as a file storage",
"license": "MIT",
"repository": "bentrynning/medusa-file-github",
"author": {
"name": "Bent Rynning",
"email": "bent.rynning@gmail.com",
"url":"http://bentrynning.me"
},
"main": "index.js",
"engines": {
"node": ">=14.16"
},
"files": [
"./services"
],
"keywords": [
"medusa-plugin",
"medusa-plugin-file",
"medusa-file-github",
"github"
],
"scripts": {
"dev": "swc -w ./src -d .",
"build": "swc ./src -d .",
"prepublish": "npm run build"
},
"bugs": {
"url": "https://github.com/bentrynning/medusa-file-github/issues"
},
"homepage": "https://github.com/bentrynning/medusa-file-github/tree/main#readme",
"dependencies": {
"octokit": "2.0.19"
},
"peerDependencies": {
"@medusajs/medusa": "1.14.0"
},
"devDependencies": {
"@swc/cli": "0.1.62",
"@swc/core": "1.3.77",
"@types/express": "4.17.17",
"typeorm": "0.3.17"
}
}