-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.16 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.16 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
{
"name": "signagelist",
"type": "module",
"version": "1.0.0",
"description": "A curated directory of digital signage software products.",
"homepage": "https://signagelist.org",
"bugs": {
"url": "https://github.com/514sid/digital-signage-list/issues"
},
"author": "514sid",
"scripts": {
"dev": "hugo server --disableFastRender",
"build": "cd scripts/sync-platforms && go run . ../../data/products && cd ../.. && hugo --minify",
"sync:platforms": "cd scripts/sync-platforms && go run . ../../data/products",
"preview": "hugo server --minify",
"check": "bun run scripts/check.ts",
"add": "bun run scripts/add-product.ts",
"sync:amazon": "bun run scripts/sync-amazon-signage.ts",
"lint": "bunx biome check assets/ts/ scripts/ cli.ts",
"lint:fix": "bunx biome check --write assets/ts/ scripts/ cli.ts"
},
"devDependencies": {
"@biomejs/biome": "^2.4.0",
"@tailwindcss/cli": "^4.1.18",
"@types/js-yaml": "^4.0.9",
"bun-types": "^1.3.11",
"js-yaml": "^4.1.1",
"sharp": "^0.34.5",
"tailwindcss": "^4.1.18",
"zod": "^4.3.6"
},
"dependencies": {
"@fontsource-variable/inter": "^5.2.8"
}
}