-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.99 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.99 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "uinaf-intake",
"version": "0.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "astro dev",
"build": "astro build",
"lint": "oxlint --ignore-pattern '*.astro'",
"format": "oxfmt .",
"format:check": "oxfmt --check .",
"typecheck": "pnpm run typecheck:astro && pnpm run typecheck:tsc",
"typecheck:astro": "astro check",
"typecheck:tsc": "tsc --noEmit",
"icons": "node scripts/icons.ts",
"check:entries": "node scripts/validate-entries.ts",
"check:links": "node scripts/check-links.ts",
"check:build-budget": "node scripts/check-build-budget.ts",
"check:cloudflare": "wrangler deploy --dry-run && node scripts/check-cloudflare.ts",
"intake:find": "node scripts/find-source.ts",
"test": "node --test",
"audit": "pnpm audit --audit-level=high",
"check": "pnpm run check:entries && pnpm run test && pnpm run lint && pnpm run typecheck && pnpm run format:check && pnpm run design:check",
"skills:lint": "skillcheck lint",
"skills:run": "skillcheck run",
"skills:sweep": "skillcheck sweep",
"skills:summarize": "skillcheck summarize",
"verify": "mise run verify",
"verify:full": "mise run --force verify",
"design:check": "design-check src"
},
"dependencies": {
"@astrojs/check": "^0.9.10",
"@astrojs/rss": "^4.0.15",
"@uinaf/design": "^1.13.4",
"astro": "^7.2.2"
},
"devDependencies": {
"@resvg/resvg-js": "^2.6.2",
"@tailwindcss/vite": "^4.3.2",
"@types/mdast": "4.0.4",
"@types/node": "^26.1.2",
"@uinaf/skillcheck": "^0.2.0",
"mdast-util-from-markdown": "2.0.3",
"mdast-util-gfm-footnote": "2.1.0",
"micromark-extension-gfm-footnote": "2.1.0",
"oxfmt": "^0.63.0",
"oxlint": "^1.76.0",
"png-to-ico": "^3.0.2",
"satori": "^0.29.0",
"sharp": "^0.35.3",
"tailwindcss": "^4.3.2",
"typescript": "^6.0.3",
"wrangler": "4.123.0",
"yaml": "2.9.0"
},
"engines": {
"node": ">=24.18.0"
},
"packageManager": "pnpm@12.0.0"
}