-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.43 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.43 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
46
47
48
49
{
"name": "sharex-server",
"version": "3.0.0",
"description": "ShareX image and file hosting using Node.js",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"lint": "npx eslint .",
"lint:fix": "npx eslint . --fix",
"build": "rm -rf dist && npx tsc",
"test": "node --test",
"test:build": "npm run build && node --test",
"prepublishOnly": "npm run lint:fix && npm run test:build"
},
"author": "Alex Kovacs <alex@kvcs.dev>",
"homepage": "https://github.com/alexthemaster/sharex-server#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/alexthemaster/sharex-server.git"
},
"bugs": {
"url": "https://github.com/alexthemaster/sharex-server/issues"
},
"keywords": [
"sharex",
"sharex-server",
"sharex server",
"sharex file server",
"sharex image server"
],
"license": "MIT",
"dependencies": {
"express": "^5.2.1",
"mime-types": "^3.0.2",
"multer": "^2.0.2",
"nanoid": "^3.3.8"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@types/express": "^5.0.6",
"@types/mime-types": "^3.0.1",
"@types/multer": "^2.0.0",
"@types/node": "^24.10.1",
"eslint": "^9.39.1",
"supertest": "^7.1.4",
"typescript": "^5.9.3",
"typescript-eslint": "^8.48.1"
}
}