-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.2 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.2 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
50
51
52
53
54
55
56
57
58
{
"name": "nodebb-plugin-upload-plus",
"version": "0.3.1",
"description": "Advanced upload plugin for NodeBB with sub-folder strategy and optional WebP conversion",
"keywords": [
"forum",
"nodebb",
"plugin",
"hash",
"upload",
"webp",
"storage",
"file management",
"sha256",
"sub-folder"
],
"repository": {
"type": "git",
"url": "https://github.com/mysteren/nodebb-plugin-upload-plus"
},
"readme": "README.md",
"license": "MIT",
"author": {
"name": "Timofey",
"email": "mysterenct@gmail.com"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"nbbpm": {
"compatibility": "^4.0.0"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"main": "./library.js",
"scripts": {
"lint": "eslint .",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"sharp": "^0.34.3"
},
"devDependencies": {
"@commitlint/cli": "19.8.1",
"@commitlint/config-angular": "19.8.1",
"eslint": "9.34.0",
"eslint-config-nodebb": "1.1.11",
"husky": "9.1.7",
"lint-staged": "16.1.5"
}
}