-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 1.22 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
{
"name": "imageforwarder",
"version": "1.0.0",
"description": "Forwards an image from a URL to the client to prevent the origin server from tracking the user.",
"private": "true",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"dev": "nodemon src/index.ts",
"start": "node dist/index.js",
"run": "ts-node src/index.ts",
"format": "prettier --write \"src/**/*{.ts,.tsx,.js,.jsx,.json,.css,.md}\"",
"lint": "eslint \"src/**/*.{ts,tsx}\"",
"lint:fix": "eslint --fix \"src/**/*.{ts,tsx}\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/fedsdotlol/ImageForwarder.git"
},
"author": "fedslol",
"license": "ISC",
"bugs": {
"url": "https://github.com/fedsdotlol/ImageForwarder/issues"
},
"homepage": "https://github.com/fedsdotlol/ImageForwarder#readme",
"devDependencies": {
"@types/node": "^22.10.2",
"@typescript-eslint/eslint-plugin": "^8.16.0",
"@typescript-eslint/parser": "^8.17.0",
"eslint": "^9.16.0",
"nodemon": "^3.1.9",
"prettier": "^3.4.2",
"ts-node": "^10.9.2",
"typescript": "^5.7.2"
},
"dependencies": {
"axios": "^1.7.9",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"sharp": "^0.33.5"
}
}