-
-
Notifications
You must be signed in to change notification settings - Fork 68
Expand file tree
/
Copy pathpackage.json
More file actions
112 lines (112 loc) · 5.12 KB
/
Copy pathpackage.json
File metadata and controls
112 lines (112 loc) · 5.12 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
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"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-portal-contributors": "node scripts/fetch-portal-contributors.js",
"fetch-gnome-extensions": "node scripts/fetch-gnome-extensions.js",
"generate-report": "npm run fetch-countme -- --force && 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-factory-stats": "node scripts/fetch-factory-stats.js",
"fetch-firehose": "node scripts/fetch-firehose.js",
"generate-card-images": "node scripts/generate-card-images.mjs",
"generate-social-cards": "node scripts/generate-social-cards.mjs",
"fetch-update-churn": "node scripts/fetch-update-churn.js",
"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-portal-contributors & npm run fetch-gnome-extensions & npm run fetch-registry-data & npm run fetch-hive-live-data & npm run fetch-factory-stats & npm run fetch-countme & npm run fetch-brew-analytics & npm run fetch-flathub-stats & npm run fetch-scorecard & npm run fetch-dora & npm run fetch-test-runs & npm run fetch-update-churn & wait",
"fetch-data:dependent": "npm run fetch-github-driver-versions & npm run fetch-github-images & npm run fetch-firehose & npm run fetch-ghcr-packages & wait",
"test": "node --test \"scripts/**/*.test.js\"",
"test:coverage": "mkdir -p coverage && node --test --experimental-test-coverage --test-reporter=spec --test-reporter-destination=stdout --test-reporter=lcov --test-reporter-destination=coverage/lcov.info --test-coverage-lines=60 --test-coverage-functions=60 --test-coverage-branches=60 \"scripts/**/*.test.js\"",
"fetch-pin-state": "node scripts/fetch-pin-state.js",
"fetch-countme": "node scripts/fetch-countme.js",
"fetch-brew-analytics": "node scripts/fetch-brew-analytics.js",
"fetch-flathub-stats": "node scripts/fetch-flathub-stats.js",
"fetch-scorecard": "node scripts/fetch-scorecard.js",
"fetch-dora": "node scripts/fetch-dora.js",
"fetch-test-runs": "node scripts/fetch-test-runs.js",
"fetch-ghcr-packages": "node scripts/fetch-ghcr-packages.js"
},
"dependencies": {
"@docusaurus/core": "^3.10.1",
"@docusaurus/faster": "^3.10.1",
"@docusaurus/plugin-client-redirects": "^3.10.2",
"@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",
"date-fns": "^4.1.0",
"dompurify": "^3.4.2",
"echarts": "^6.1.0",
"prism-react-renderer": "^2.3.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-icons": "^5.6.0",
"sanitize-html": "^2.17.7",
"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",
"@fontsource/jetbrains-mono": "5.3.0",
"@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",
"prettier": "3.9.5",
"satori": "0.28.0",
"typescript": "6.0.3",
"wrangler": "4.129.1"
},
"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"
}
}