generated from userscripters/template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.95 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
{
"name": "@userscripters/comment-image-upload",
"version": "0.2.2",
"description": "Userscript for uploading comment images",
"scripts": {
"test": "exit 0",
"lint": "eslint src --fix",
"clean": "rm -rf dist",
"prebuild": "npm run lint && npm run clean",
"uglify-modern": "uglifyjs dist/modern/* --compress --mangle -o dist/modern/index.min.js",
"uglify-legacy": "uglifyjs dist/legacy/* --compress --mangle -o dist/legacy/index.min.js",
"build-modern": "tsc --outDir dist/modern && npm run uglify-modern",
"build-legacy": "tsc --target es5 --outDir dist/legacy && npm run uglify-legacy",
"build-all": "bash ./scripts/build.sh",
"headers-tm": "bash ./scripts/headers.sh",
"readme": "generate-readme",
"postversion": "bash ./scripts/postversion.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/userscripters/comment-image-upload.git"
},
"keywords": [
"userscripts",
"stackoverflow",
"comments",
"images"
],
"author": {
"name": "Oleg Valter",
"email": "[email protected]"
},
"contributors": [
{
"name": "double beep",
"url": "https://github.com/double-beep"
}
],
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/userscripters/comment-image-upload/issues"
},
"homepage": "https://github.com/userscripters/comment-image-upload#readme",
"devDependencies": {
"@eslint/js": "^9.18.0",
"@stylistic/eslint-plugin": "^2.12.1",
"@types/tampermonkey": "^5.0.4",
"@userscripters/generate-headers": "^3.5.0",
"@userscripters/generate-readme": "^3.0.2",
"@userscripters/stackexchange-global-types": "^2.8.2",
"typescript": "^5.7.3",
"typescript-eslint": "^8.19.1",
"uglify-js": "^3.19.3"
},
"type": "module"
}