-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.57 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.57 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
29
30
31
32
33
34
35
36
{
"name": "sbomify",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/sbomify/sbomify.com",
"author": "Devan Thakur <devanthakur89@gmail.com>",
"license": "MIT",
"scripts": {
"build:fonts": "mkdir -p assets/fonts && FONT_DIR=$([ -d /usr/local/bun-deps/node_modules/@fontsource-variable ] && echo /usr/local/bun-deps/node_modules || echo node_modules) && cp $FONT_DIR/@fontsource-variable/inter/files/inter-latin-wght-normal.woff2 assets/fonts/ && cp $FONT_DIR/@fontsource-variable/inter/files/inter-latin-ext-wght-normal.woff2 assets/fonts/",
"build:css": "bun run build:fonts && postcss _assets/css/tailwind.css -o assets/css/styles.css",
"build:d2": "bun scripts/watch-d2.ts",
"build:hugo": "hugo --minify --environment production",
"watch:css": "bun run build:fonts && postcss _assets/css/tailwind.css -o assets/css/styles.css --watch",
"watch:d2": "bun scripts/watch-d2.ts --watch",
"lint": "bun run lint:markdown && bun run lint:d2",
"lint:d2": "d2 fmt _d2/*.d2",
"lint:markdown": "dprint check \"**/*.md\"",
"lint:markdown:fix": "dprint fmt \"**/*.md\""
},
"dependencies": {
"@fontsource-variable/inter": "^5.2.8",
"@fortawesome/fontawesome-free": "^7.1.0",
"@tabler/icons": "^3.36.1",
"autoprefixer": "^10.4.24",
"baseline-browser-mapping": "^2.9.19",
"browserslist": "^4.28.1",
"caniuse-lite": "^1.0.30001769",
"postcss": "^8.5.6",
"postcss-cli": "^11.0.1",
"tailwindcss": "^3.4.18",
"update-browserslist-db": "^1.1.4"
},
"devDependencies": {
"dprint": "^0.50.2"
}
}