forked from misskey-dev/media-proxy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.5 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
54
55
56
57
{
"name": "misskey-media-proxy",
"version": "0.0.25",
"description": "The Media Proxy for Misskey",
"main": "built/index.js",
"packageManager": "pnpm@9.15.4",
"type": "module",
"files": [
"built",
"LICENSE",
"README.md"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"start": "node ./server.mjs",
"restart": "pnpm build && pnpm start",
"dev": "nodemon -w src -e ts,js,mjs,cjs,json --exec \"cross-env NODE_ENV=development pnpm run restart\""
},
"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.6.0",
"@swc/core": "1.10.12",
"@types/content-disposition": "0.5.8",
"@types/node": "22.13.0",
"@types/tmp": "0.2.6",
"cross-env": "7.0.3",
"nodemon": "3.1.9",
"typescript": "5.7.3"
},
"dependencies": {
"@fastify/static": "8.0.4",
"@misskey-dev/sharp-read-bmp": "1.2.0",
"cacheable-lookup": "7.0.0",
"close-with-grace": "2.2.0",
"content-disposition": "0.5.4",
"fastify": "5.2.1",
"file-type": "20.0.1",
"got": "14.4.5",
"hpagent": "1.2.0",
"ip-cidr": "4.0.2",
"ipaddr.js": "2.2.0",
"is-svg": "5.1.0",
"pino": "9.6.0",
"private-ip": "3.0.2",
"sharp": "0.33.5",
"tmp": "0.2.3"
}
}