Files
media-proxy/package.json
2023-05-10 13:17:35 +00:00

54 lines
1.4 KiB
JSON

{
"name": "misskey-media-proxy",
"version": "0.0.22",
"description": "The Media Proxy for Misskey",
"main": "built/index.js",
"packageManager": "pnpm@7.28.0",
"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.62",
"@swc/core": "^1.3.57",
"@types/content-disposition": "^0.5.5",
"@types/node": "^18.16.7",
"@types/sharp": "^0.31.1",
"@types/tmp": "^0.2.3",
"typescript": "^4.9.5"
},
"dependencies": {
"@fastify/static": "^6.10.1",
"cacheable-lookup": "^7.0.0",
"content-disposition": "^0.5.4",
"fastify": "^4.17.0",
"fastify-cli": "^5.7.1",
"file-type": "^18.4.0",
"got": "^12.6.0",
"hpagent": "^1.2.0",
"ip-cidr": "^3.1.0",
"is-svg": "^4.4.0",
"private-ip": "^3.0.0",
"sharp": "^0.31.3",
"sharp-read-bmp": "github:misskey-dev/sharp-read-bmp",
"tmp": "^0.2.1"
}
}