forked from misskey-dev/media-proxy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.38 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
49
50
51
52
53
{
"name": "misskey-media-proxy",
"version": "0.0.24",
"description": "The Media Proxy for Misskey",
"main": "built/index.js",
"packageManager": "[email protected]",
"type": "module",
"files": [
"built",
"LICENSE",
"README.md"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"dev": "swc src -d built -D -w & fastify start -w -l info -P ./built/index.js",
"start": "fastify start ./server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/misskey-dev/media-proxy.git"
},
"author": "syuilo, tamaina",
"license": "AGPL-3.0-or-later",
"bugs": {
"url": "https://github.com/misskey-dev/media-proxy/issues"
},
"homepage": "https://github.com/misskey-dev/media-proxy#readme",
"devDependencies": {
"@swc/cli": "^0.1.63",
"@swc/core": "^1.3.104",
"@types/content-disposition": "^0.5.8",
"@types/node": "^20.11.5",
"@types/tmp": "^0.2.6",
"typescript": "^5.3.3"
},
"dependencies": {
"@fastify/static": "^6.12.0",
"@misskey-dev/sharp-read-bmp": "^1.1.1",
"cacheable-lookup": "^7.0.0",
"content-disposition": "^0.5.4",
"fastify": "^4.25.2",
"fastify-cli": "^6.0.1",
"file-type": "^19.0.0",
"got": "^13.0.0",
"hpagent": "^1.2.0",
"ip-cidr": "^3.1.0",
"ipaddr.js": "^2.1.0",
"is-svg": "^5.0.0",
"private-ip": "^3.0.1",
"sharp": "^0.32.6",
"tmp": "^0.2.1"
}
}