-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 1.06 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
{
"name": "@catppuccin/highlightjs",
"version": "1.0.0",
"description": "Soothing pastel theme for Highlight.js",
"repository": "https://github.com/catppuccin/highlightjs.git",
"author": "Catppuccin Org <[email protected]>",
"contributors": [
"winston <[email protected]>",
"uncenter <[email protected]>"
],
"funding": [
{
"type": "opencollective",
"url": "https://opencollective.com/catppuccin"
},
{
"type": "github",
"url": "https://github.com/sponsors/catppuccin"
}
],
"files": [
"css/**",
"sass/**"
],
"license": "MIT",
"private": false,
"scripts": {
"build": "rimraf css && sass -I node_modules sass:css --no-source-map --style=compressed",
"build:pages": "npm run build && tailwindcss -mo preview/style.css",
"preview": "serve preview",
"prepare": "npm run build"
},
"devDependencies": {
"@catppuccin/palette": "^1.0.0",
"@catppuccin/tailwindcss": "^0.1.6",
"rimraf": "^6.0.0",
"sass": "^1.58.0",
"serve": "^14.2.1",
"tailwindcss": "^3.3.3"
}
}