-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.67 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.67 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
{
"name": "all-contributors",
"description": "✨ Recognize all contributors, not just the ones who push code ✨",
"version": "0.0.0-semantically-released",
"bin": "index.js",
"main": "index.js",
"repository": "git@github.com:all-contributors/all-contributors.git",
"author": "All Contributors (https://allcontributors.org)",
"license": "MIT",
"scripts": {
"commit": "git-cz",
"dev": "astro dev",
"start": "astro dev",
"get-translations": "crowdin pull -b main -l de -l es-ES -l fr -l hi -l id -l ja -l ko -l nl -l pl -l pt-BR -l ro -l ru -l zh-CN",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"link-check-offline": "lychee --config ./lychee.toml --offline --root-dir \"$(pwd)/dist/\" --remap \"all-contributors.github.io $(pwd)/dist/\" 'dist/**/*.html'",
"link-check": "lychee --config ./lychee.toml --root-dir \"$(pwd)/dist/\" --remap \"all-contributors.github.io $(pwd)/dist/\" 'dist/**/*.html'",
"lint": "markdownlint **/*.{md,mdx}",
"lint-fix": "markdownlint --fix **/*.{md,mdx}"
},
"dependencies": {
"@astrojs/sitemap": "^3.5.1",
"@astrojs/starlight": "^0.38.1",
"@astrojs/starlight-tailwind": "^5.0.0",
"@tailwindcss/vite": "^4.1.13",
"astro": "^6.0.3",
"autoprefixer": "^10.4.21",
"postcss": "^8.5.6",
"rehype-autolink-headings": "^7.1.0",
"rehype-slug": "^6.0.0",
"sass-embedded": "^1.92.1",
"sharp": "^0.34.2",
"tailwindcss": "^4.1.13"
},
"devDependencies": {
"cz-conventional-changelog": "^3.3.0",
"git-cz": "^4.9.0",
"markdownlint-cli": "^0.48.0"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}