This repository has been archived by the owner on Sep 27, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpackage.json
104 lines (104 loc) · 2.75 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
{
"name": "mtslack",
"version": "31.1.0",
"description": "Material themes (and others) for Slack!",
"main": "main.js",
"type": "module",
"bin": {
"mtslack": "main.js"
},
"scripts": {
"start": "node ./bin/mtslack",
"minor": "npm version minor && npm publish",
"major": "npm version major && npm publish",
"local": "LOCALHOST=1 npx ./main.js",
"apply": "npx ./main.js",
"server": "http-server --cors -p 8030",
"windows": "npx ./main.js",
"styles": "gulp styles",
"debugStyles": "gulp debugStyles",
"watchStyles": "gulp watchStyles",
"scripts": "gulp scripts",
"watchScripts": "gulp watchScripts",
"httpServer": "http-server -c-1 --cors &",
"liveServer": "npm run httpServer && npm run watchStyles",
"debug": "export SLACK_DEVELOPER_MENU=true; open -a /Applications/Slack.app",
"stylelint": "stylelint --fix sources/client.scss"
},
"engines": {
"node": ">=14"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mallowigi/mtslack.git"
},
"author": "Elior (Mallowigi) Boukhobza",
"license": "Apache License 2.0",
"keywords": [
"slack",
"material",
"themes"
],
"files": [
"/bin",
"/plugins/*.js",
"/includes/*.js",
"/dist/*",
"/lib/*"
],
"bugs": {
"url": "https://github.com/mallowigi/mtslack/issues"
},
"homepage": "https://github.com/mallowigi/mtslack#readme",
"dependencies": {
"@feizheng/next-sample": "^1.2.2",
"@mallowigi/asar": "^1.5.1",
"chalk": "^5.3.0",
"clear": "^0.1.0",
"cli-autoupdate": "^2.0.4",
"clipboardy": "^3.0.0",
"clui": "^0.3.6",
"configstore": "^6.0.0",
"figlet": "^1.6.0",
"inquirer": "^9.2.10",
"is-elevated": "^4.0.0",
"is-root": "^3.0.0",
"js-yaml": "^4.1.0",
"minimist": "^1.2.8",
"rimraf": "^5.0.1",
"sass": "^1.66.1"
},
"publishConfig": {
"access": "public",
"cache": "~/.npm"
},
"devDependencies": {
"browserslist": "4.21.10",
"css-what": "6.1.0",
"eslint": "8.48.0",
"eslint-config-oclif": "4.0.0",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-import": "2.28.1",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "5.0.1",
"gulp": "4.0.2",
"gulp-browser-js-include": "0.0.7",
"gulp-butternut": "1.0.0",
"gulp-clean-css": "4.3.0",
"gulp-file-include": "2.3.0",
"gulp-file-include2": "2.0.1",
"gulp-inject-version": "1.0.1",
"gulp-rename": "2.0.0",
"gulp-replace": "1.1.4",
"gulp-sass": "5.1.0",
"hosted-git-info": "7.0.0",
"http-server": "14.1.1",
"lodash.template": "4.5.0",
"npx": "10.2.2",
"nth-check": "2.1.1",
"path-parse": "1.0.7",
"prettier": "3.0.3",
"stylelint": "15.10.3",
"stylelint-prettier": "4.0.2"
}
}