forked from ton-org/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.89 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.89 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
{
"name": "ton-docs",
"private": true,
"scripts": {
"start": "npx mint dev",
"start:no-open": "mint dev --no-open",
"check:openapi": "mint openapi-check ecosystem/api/toncenter/v2.json && mint openapi-check ecosystem/api/toncenter/v3.yaml",
"check:links": "mint broken-links",
"check:redirects": "node scripts/check-redirects.mjs",
"check:navigation": "node scripts/check-navigation.mjs",
"check:fs": "echo 'https://github.com/ton-org/docs/issues/1182'",
"check:fmt": "remark . -e mdx,md --no-stdout --quiet --frail",
"check:fmt:some": "remark --no-stdout --quiet --frail --silently-ignore",
"check:spell": "cspell --no-progress --show-suggestions .",
"check:all": "npm run check:openapi && npm run check:links && npm run check:redirects && npm run check:fs && npm run check:fmt && npm run check:spell",
"fmt": "remark . -e mdx,md -o --silent",
"fmt:some": "remark -o --silent --silently-ignore",
"spell": "cspell lint --no-progress --show-suggestions .",
"spell:some": "cspell lint",
"lint:all": "npm run check:all",
"gen:mdx-for-openapi:toncenter-v2": "npx @mintlify/scraping@latest openapi-file -w ecosystem/api/toncenter/v2.json -o ecosystem/api/toncenter/v2",
"gen:mdx-for-openapi:toncenter-v3": "npx @mintlify/scraping@latest openapi-file -w ecosystem/api/toncenter/v3.yaml -o ecosystem/api/toncenter/v3",
"stats": "python3 scripts/stats.py",
"prepare": "husky"
},
"dependencies": {
"cspell": "^9.4.0",
"husky": "^9.1.7",
"mint": "^4.2.221",
"remark": "^15.0.1",
"remark-cli": "^12.0.1",
"remark-frontmatter": "^5.0.0",
"remark-gfm": "^4.0.1",
"remark-math": "^6.0.0",
"remark-mdx": "^3.1.1",
"string-width": "=8.1.0",
"unified-consistency": "=2.0.0",
"unist-util-visit-parents": "^6.0.2"
},
"engines": {
"node": ">=20.17",
"npm": ">=9"
},
"packageManager": "npm@9.9.4"
}