forked from catppuccin/discord
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
35 lines (35 loc) · 1.05 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
{
"name": "catppuccin-discord",
"version": "0.2.0",
"description": "Catppuccin theme for Discord",
"repository": "https://github.com/catppuccin/discord",
"license": "MIT",
"author": {
"name": "Catppuccin Org",
"email": "[email protected]"
},
"contributors": [
{
"name": "winston",
"email": "[email protected]"
}
],
"private": true,
"scripts": {
"build": "mkdir -p dist/dist && sass -I node_modules --no-charset --no-source-map src:dist/dist",
"release": "node build.js && mkdir -p dist/dist && sass -I node_modules --style=compressed --no-charset --no-source-map src:dist/dist && rm src/catppuccin-*-*.theme.scss",
"watch": "mkdir -p dist/dist && sass -I node_modules --no-charset --no-source-map src:dist/dist -w",
"prepare": "husky"
},
"devDependencies": {
"@catppuccin/highlightjs": "^1.0.0",
"@catppuccin/palette": "^1.0.0",
"husky": ">=6",
"lint-staged": ">=10",
"prettier": "^3.0.0",
"sass": "^1.55.0"
},
"lint-staged": {
"*.{js,sass,scss}": "prettier --write"
}
}