-
-
Notifications
You must be signed in to change notification settings - Fork 64
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 3.73 KB
/
Copy pathpackage.json
File metadata and controls
99 lines (99 loc) · 3.73 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "bluefin-docusaurus",
"version": "0.0.0",
"private": true,
"scripts": {
"docusaurus": "docusaurus",
"start": "npm run fetch-data && docusaurus start --host 0.0.0.0",
"build": "npm run fetch-data && docusaurus build",
"build:ci": "docusaurus build",
"swizzle": "docusaurus swizzle",
"deploy": "docusaurus deploy",
"clear": "docusaurus clear",
"serve": "docusaurus serve",
"write-translations": "docusaurus write-translations",
"write-heading-ids": "docusaurus write-heading-ids",
"typecheck": "tsc",
"prettier": "prettier --write .",
"prettier-lint": "prettier --check .",
"lint": "eslint .",
"fetch-feeds": "node scripts/fetch-feeds.js",
"fetch-playlists": "node scripts/fetch-playlist-metadata.js",
"fetch-github-profiles": "node scripts/fetch-github-profiles.js",
"fetch-github-repos": "node scripts/fetch-github-repos.js",
"fetch-github-driver-versions": "node scripts/fetch-github-driver-versions.js",
"fetch-github-images": "node scripts/fetch-github-images.js",
"fetch-contributors": "node scripts/fetch-contributors.js",
"fetch-gnome-extensions": "node scripts/fetch-gnome-extensions.js",
"generate-report": "node scripts/generate-report.mjs",
"fetch-sbom": "node scripts/fetch-github-sbom.js",
"fetch-hive-history": "node scripts/fetch-hive-history.js",
"fetch-registry-data": "node scripts/fetch-registry-data.js",
"fetch-hive-live-data": "node scripts/fetch-hive-live-data.js",
"fetch-firehose": "node scripts/fetch-firehose.js",
"generate-card-images": "node scripts/generate-card-images.mjs",
"fetch-data": "npm run fetch-data:independent && npm run fetch-pin-state && npm run fetch-data:dependent",
"fetch-data:independent": "npm run fetch-feeds & npm run fetch-playlists & npm run fetch-github-profiles & npm run fetch-github-repos & npm run fetch-contributors & npm run fetch-gnome-extensions & npm run fetch-registry-data & npm run fetch-hive-live-data & wait",
"fetch-data:dependent": "npm run fetch-github-driver-versions & npm run fetch-github-images & npm run fetch-firehose & wait",
"test": "node --test scripts/*.test.js",
"fetch-pin-state": "node scripts/fetch-pin-state.js"
},
"dependencies": {
"@docusaurus/core": "^3.10.1",
"@docusaurus/faster": "^3.10.1",
"@docusaurus/preset-classic": "^3.10.1",
"@docusaurus/theme-mermaid": "^3.10.1",
"@easyops-cn/docusaurus-search-local": "^0.55.0",
"@giscus/react": "^3.1.0",
"@mdx-js/react": "^3.0.0",
"@octokit/graphql": "^9.0.3",
"caniuse-lite": "^1.0.30001727",
"clsx": "^2.0.0",
"date-fns": "^4.1.0",
"dompurify": "^3.4.2",
"echarts": "^6.1.0",
"glob": "^7.2.3",
"prism-react-renderer": "^2.3.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-icons": "^5.6.0",
"search-insights": "^2.17.3",
"xml2js": "^0.6.2"
},
"devDependencies": {
"@docusaurus/eslint-plugin": "3.10.2",
"@docusaurus/module-type-aliases": "3.10.2",
"@docusaurus/tsconfig": "3.10.2",
"@docusaurus/types": "3.10.2",
"@fontsource/inter": "5.2.8",
"@resvg/resvg-js": "2.6.2",
"@types/dompurify": "3.2.0",
"@types/react-dom": "19.2.3",
"@typescript-eslint/eslint-plugin": "8.64.0",
"@typescript-eslint/parser": "8.64.0",
"eslint": "10.7.0",
"node-fetch": "3.3.2",
"prettier": "3.9.5",
"satori": "0.28.0",
"typescript": "6.0.3"
},
"overrides": {
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"browserslist": {
"production": [
">0.5%",
"not dead",
"not op_mini all"
],
"development": [
"last 3 chrome version",
"last 3 firefox version",
"last 5 safari version"
]
},
"engines": {
"node": ">=20.0"
}
}