-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
33 lines (33 loc) · 946 Bytes
/
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
{
"name": "discord-snippets",
"description": "CSS snippets for Discord.",
"repository": "github:MiniDiscordThemes/Snippets",
"author": "Saltssaumure <themes@saltssaumure.net>",
"license": "MIT",
"private": true,
"type": "module",
"scripts": {
"self:build": "npx tsc",
"self:dev": "npx tsc -w",
"lint": "prettier ./ --check",
"lint:fix": "prettier ./ --write --log-level warn",
"dev:css": "node ./lib/watch.js",
"build:css": "node ./lib/build.js",
"build:asar": "replugged bundle theme",
"release": "replugged release"
},
"devDependencies": {
"@sass-fairy/exception": "^1.1.1",
"@sass-fairy/list": "^1.2.4",
"@sass-fairy/math": "^1.0.3",
"@sass-fairy/meta": "^1.0.2",
"@types/node": "^20.12.2",
"chalk": "^5.3.0",
"glob": "^10.3.12",
"prettier": "^3.2.5",
"replugged": "^4.7.9",
"sass": "^1.72.0",
"sharp": "^0.33.3",
"typescript": "^5.4.3"
}
}