-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 1020 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 1020 Bytes
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
{
"name": "helius-docs",
"version": "1.0.0",
"description": "Helius developer documentation",
"scripts": {
"i18n:prep": "bash scripts/i18n-skip-unchanged.sh",
"i18n:run": "npx lingo.dev@latest i18n",
"i18n:fix-links": "node scripts/fix-zh-links.js",
"i18n:nav-gen": "node scripts/sync-docs-nav.js generate",
"i18n:nav-apply": "node scripts/sync-docs-nav.js apply",
"i18n": "npm run i18n:nav-gen && npm run i18n:prep && npm run i18n:run && npm run i18n:fix-links && npm run i18n:nav-apply",
"i18n:check": "npm run i18n:prep && npx lingo.dev@latest i18n --frozen",
"i18n:force": "npm run i18n:prep && npx lingo.dev@latest i18n --force && npm run i18n:fix-links",
"sitemap": "node scripts/sitemap.js",
"generate:params": "npx tsx scripts/generate-param-fields.ts",
"dev": "mint dev",
"prepare": "husky install"
},
"devDependencies": {
"@types/js-yaml": "^4.0.9",
"js-yaml": "^4.1.0",
"mint": "latest",
"husky": "^8.0.3",
"tsx": "^4.19.0"
}
}