-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 2.08 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 2.08 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
{
"name": "docs",
"version": "1.0.0",
"description": "Our documentation is built on top of [Mintlify](https://mintlify.com). We welcome contributions for fixing small issues such as typos and for adding new or updating existing content that you think would help others.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "mint dev",
"translate:generate": "node --env-file=.env scripts/generate-translations.mjs",
"translate:docs-json": "node --env-file=.env scripts/translate-docs-json.mjs",
"translate:localize-links": "node scripts/localize-internal-links.mjs",
"translate:localize-links:all": "node scripts/localize-internal-links.mjs --all",
"translate:localize-links:check": "node scripts/localize-internal-links.mjs --all --check",
"translate:localize-mdx-paths": "node scripts/localize-mdx-paths.mjs",
"translate:localize-mdx-paths:check": "node scripts/localize-mdx-paths.mjs --all --check",
"translate:sync-anchors": "node scripts/sync-heading-anchors.mjs",
"translate:sync-anchors:check": "node scripts/sync-heading-anchors.mjs --check",
"translate:sync-openapi-titles": "node scripts/sync-openapi-titles.mjs",
"translate:sync-openapi-titles:check": "node scripts/sync-openapi-titles.mjs --check",
"translate:validate-links": "node scripts/validate-link-fragments.mjs",
"lingo:validate-glossary": "node scripts/validate-glossary-csv.mjs",
"translate:verify": "npx lingo.dev@latest run --frozen",
"translate:validate": "node scripts/validate-translations.mjs",
"translate:lock": "npx lingo.dev@latest lockfile --force",
"mint:validate": "npx mint@latest validate",
"mint:broken-links": "npx mint@latest broken-links --check-anchors --check-snippets"
},
"repository": {
"type": "git",
"url": "git+https://github.com/trophyso/docs.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/trophyso/docs/issues"
},
"homepage": "https://github.com/trophyso/docs#readme",
"devDependencies": {
"yaml": "^2.7.0"
}
}