-
Notifications
You must be signed in to change notification settings - Fork 91
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 1.1 KB
/
package.json
File metadata and controls
28 lines (28 loc) · 1.1 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
{
"name": "clearvision",
"description": "Highly customisable theme for BetterDiscord and Vencord.",
"license": "Apache-2.0",
"author": "ClearVision Team",
"contributors": [
"LeafyLuigi",
"Leozard"
],
"main": "index.js",
"scripts": {
"test": "sass src:test --load-path=src --style=expanded --no-source-map && sass dist:test --load-path=src --style=expanded --no-source-map",
"build": "pnpm run build-u && pnpm run build-m && pnpm run build-dist",
"build-u": "sass src:public-unminified --load-path=src --style=expanded --no-source-map && postcss public-unminified/*.css -d public-unminified/ -u autoprefixer --no-map",
"build-m": "sass src:public --load-path=src --style=compressed --no-source-map && postcss public/*.css -d public/ -u autoprefixer --no-map",
"build-dist": "sass dist:. --load-path=src --style=expanded --no-source-map",
"format": "prettier --write ."
},
"devDependencies": {
"autoprefixer": "^10.4.20",
"npm": "^8.19.4",
"pnpm": "^7.33.7",
"postcss": "^8.5.1",
"postcss-cli": "^10.1.0",
"prettier": "^3.5.1",
"sass": "^1.83.4"
}
}