-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpackage.json
109 lines (109 loc) · 2.72 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "zadark",
"description": "Dark Mode tốt nhất cho Zalo",
"version": "25.1.3",
"repository": "https://github.com/quaric/zadark.git",
"author": {
"name": "Quaric",
"email": "[email protected]",
"url": "https://quaric.com"
},
"contributors": [
{
"name": "Nguyen Chanh Dai",
"email": "[email protected]",
"url": "https://github.com/ncdai"
}
],
"license": "MPL-2.0",
"scripts": {
"dev": "NODE_ENV=development gulp dev",
"build": "NODE_ENV=development gulp build",
"dist": "gulp dist",
"dist:web": "gulp distWeb",
"dist:pc": "gulp distPC",
"pc:dev": "NODE_ENV=development node build/pc",
"pc:start": "NODE_ENV=production node build/pc",
"prepare": "husky install",
"standard:fix": "standard --fix ./src/**/*.js ./*.js",
"safari": "xed src/web/vendor/safari/ZaDark.xcodeproj",
"safari:what-build-number": "cd src/web/vendor/safari && xcrun agvtool what-version",
"safari:next-build-number": "cd src/web/vendor/safari && xcrun agvtool new-version -all $(date '+%s')"
},
"lint-staged": {
"*.js": "yarn standard:fix"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"del": "^6.0.0",
"gulp": "^4.0.2",
"gulp-concat": "^2.6.1",
"gulp-gzip": "^1.4.2",
"gulp-hashsum": "^1.2.0",
"gulp-minify": "^3.1.0",
"gulp-rename": "^2.0.0",
"gulp-sass": "^5.1.0",
"gulp-sort": "^2.0.0",
"gulp-tar": "3.1.0",
"gulp-zip": "^5.1.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.2",
"merge-stream": "^2.0.0",
"nodemon": "^2.0.15",
"pkg": "^5.8.1",
"resedit": "^2.0.0",
"sass": "^1.74.1",
"standard": "^16.0.4"
},
"dependencies": {
"@electron/asar": "^3.2.13",
"chalk": "4.1.2",
"cross-spawn": "^7.0.3",
"fs-extra": "^11.2.0",
"glob": "^7.2.0",
"inquirer": "^8.0.0",
"node-html-parser": "^5.2.0",
"prompt-sync": "^4.2.0"
},
"standard": {
"parser": "babel-eslint",
"global": [
"ZaDarkBrowser",
"ZaDarkUtils",
"ZaDarkFonts",
"ZaDarkTranslate",
"ZaDarkShared",
"$",
"jQuery",
"chrome",
"browser",
"bowser",
"Popper",
"tippy",
"hotkeys",
"Toastify",
"WebFont",
"introJs",
"localStorage",
"MutationObserver",
"fetch",
"Blob",
"FileReader",
"Image",
"CustomEvent",
"DEBUG",
"ZADARK_API_DOMAIN",
"ZADARK_API_URL"
],
"ignore": [
"src/web/libs/**/*.js",
"src/pc/assets/libs/**/*.js",
"src/web/vendor/safari/ZaDark/**/*.js",
"src/web/vendor/safari/ZaDark Extension/**/*.js",
"src/web/vendor/safari/ZaDark.xcodeproj/**/*.js"
]
},
"engines": {
"node": ">=16.16"
}
}