-
-
Notifications
You must be signed in to change notification settings - Fork 121
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.82 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.82 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"author": {
"name": "人民的勤务员(ChinaGodMan)",
"email": "china.qinwuyuan@gmail.com",
"url": "https://github.com/ChinaGodMan",
"time_zone": "Asia/Shanghai",
"avatar": "https://avatars.githubusercontent.com/u/96548841?v=4",
"tiktok": "https://www.tiktok.com/@qinwuyuan",
"instagram": "https://www.instagram.com/nide9448",
"telegram": "https://t.me/qinwuyuan",
"greasyfork": "https://greasyfork.org/users/1169082"
},
"project": "https://github.com/ChinaGodMan/UserScripts",
"created_at": "2024-06-17 GMT+8 17:27",
"description": "🐒一些修改自网络的油猴脚本 Some Tampermonkey scripts modified from the internet",
"disclaimer": "📢本仓库中的脚本仅供学习和交流使用,请勿用于商业用途,作者不承担任何责任。\n脚本来自互联网广大网友,本人仅是做了些许改动.感谢网友!\n如有侵权,联系必删!",
"license": "MIT",
"funding": [
{
"type": "github",
"url": "http://github.com/sponsors/ChinaGodMan"
},
{
"type": "ko-fi",
"url": "https://ko-fi.com/ChinaGodMan"
}
],
"devDependencies": {
"@eslint/json": "^1.0.1",
"@eslint/markdown": "^7.5.1",
"@stylistic/eslint-plugin": "^5.9.0",
"cz-git": "^1.12.0",
"czg": "^1.12.0",
"eslint": "^9.39.2",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-regexp": "^3.0.0",
"eslint-plugin-userscripts": "^0.5.6",
"eslint-plugin-yml": "^3.3.1",
"husky": "^9.1.7",
"lint-staged": "^16.3.1",
"prettier": "^3.8.1"
},
"scripts": {
"prepare": "husky",
"build": "pwsh -noprofile -command buildscript",
"bump:scripts": "python utils/update_version.py",
"isort": "isort utils/",
"flake8": "flake8 --config=pyproject.toml",
"pep8:check": "python -X utf8 -m autopep8 --diff --recursive utils/",
"pep8:write": "python -X utf8 -m autopep8 --in-place --recursive utils/",
"fmt:write": "prettier --write '**/*.{js,mjs,json}'",
"fmt:check": "prettier --check '**/*.{js,mjs,json}'",
"lint": "eslint . --cache",
"lint:all": "eslint .",
"lint:fix": "eslint . --fix --cache",
"lint:fix-all": "eslint . --fix",
"docs:relatedscripts": "python utils/update_related_scripts.py",
"docs:relatedscripts:all": "python utils/update_related_all_scripts.py",
"docs:scripts:help": "python utils/update_help.py",
"docs:scripts:shields": "python utils/update_shields.py",
"docs:scripts:navigation": "python utils/navigation.py",
"docs:scripts:history": "python utils/merge_change_history.py",
"docs:translate:repo": "python utils/translate_force_chinese_to_lang.py",
"docs:translate:scripts": "python utils/translate_chinese_to_filelang.py"
},
"lint-staged": {
"*.{js,mjs}": [
"eslint --fix"
],
"*.{yml,md,json}": [
"prettier --write"
]
}
}