This repository was archived by the owner on Jul 12, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.32 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.32 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
{
"name": "@xboxreplay/express-ugc-proxy",
"description": "Express middleware to proxy user-generated content to your own host and embed them on social media platforms such as Facebook, Twitter, Discord, etc.",
"version": "0.4.3",
"keywords": [
"middleware",
"xboxreplay",
"xboxlive",
"express",
"proxy",
"ugc"
],
"repository": {
"type": "git",
"url": "https://github.com/XboxReplay/express-ugc-proxy"
},
"license": "MIT",
"types": "./index.d.ts",
"main": "./dist/index.js",
"author": {
"name": "Alexis Bize",
"email": "alexis.bize@gmail.com"
},
"scripts": {
"build": "npm run clean && ./node_modules/.bin/tsc",
"clean": "rm -rf ./dist",
"prepublishOnly": "npm run test && npm run build",
"test": "echo \"No tests specified\""
},
"dependencies": {
"@xboxreplay/errors": "^0.1.0",
"@xboxreplay/xboxlive-api": "^2.3.1",
"express": "^4.17.1",
"http-proxy-middleware": "^0.19.1"
},
"peerDependencies": {
"@xboxreplay/xboxlive-auth": "^2.2.0"
},
"devDependencies": {
"@types/express": "^4.17.0",
"@types/http-proxy-middleware": "^0.19.2",
"@types/node": "^12.0.10",
"typescript": "^3.5.2"
}
}