-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.46 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 2.46 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "@singi-labs/sifa-docs",
"version": "0.1.0",
"private": true,
"description": "Documentation site for Sifa (docs.sifa.id)",
"repository": {
"type": "git",
"url": "https://github.com/singi-labs/sifa-docs.git"
},
"license": "MIT",
"engines": {
"node": ">=24.0.0"
},
"scripts": {
"dev": "next dev",
"prebuild": "node scripts/copy-mdx-to-raw.mjs && tsx scripts/generate-og-images.tsx",
"build": "next build",
"examples:typecheck": "tsc -p examples/tsconfig.json --noEmit",
"start": "next start",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"typecheck": "fumadocs-mdx && tsc --noEmit",
"format": "prettier --write .",
"format:check": "prettier --check .",
"prepare": "husky",
"screenshots:capture": "tsx scripts/screenshot-runner.ts",
"screenshots:diff": "tsx scripts/screenshot-diff.ts",
"screenshots:validate": "tsx scripts/validate-screenshot-refs.ts",
"check:ste": "tsx scripts/check-ste.ts",
"check:ste:test": "tsx --test scripts/ste.test.ts",
"check:links": "tsx scripts/check-app-links.ts",
"check:links:test": "tsx --test scripts/app-links.test.ts",
"check:showcase": "tsx scripts/check-showcase.ts",
"check:showcase:test": "tsx --test scripts/showcase.test.ts",
"capture:showcase": "tsx scripts/capture-showcase.ts",
"fetch:apps": "node scripts/fetch-app-registry.mjs"
},
"dependencies": {
"@radix-ui/colors": "3.0.0",
"@singi-labs/sifa-sdk": "0.12.70",
"fumadocs-core": "16.6.5",
"fumadocs-mdx": "14.2.8",
"fumadocs-ui": "16.6.5",
"next": "16.3.0",
"react": "19.2.4",
"react-dom": "19.2.4",
"zod": "4.3.6"
},
"devDependencies": {
"@commitlint/cli": "20.4.2",
"@commitlint/config-conventional": "20.4.2",
"@tailwindcss/postcss": "4.2.1",
"@types/mdx": "2.0.13",
"@types/node": "25.3.0",
"@atproto/api": "0.20.8",
"@types/pngjs": "6.0.5",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"pixelmatch": "7.2.0",
"playwright": "1.60.0",
"pngjs": "7.0.0",
"tsx": "4.22.4",
"eslint": "9.39.3",
"eslint-config-next": "16.3.0",
"eslint-plugin-jsx-a11y": "6.10.2",
"husky": "9.1.7",
"lint-staged": "16.2.7",
"prettier": "3.8.1",
"tailwindcss": "4.2.1",
"typescript": "5.9.3"
},
"lint-staged": {
"*.{ts,tsx,js,mjs}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md,mdx,css,yml,yaml}": [
"prettier --write"
]
}
}