-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.01 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 1.01 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
{
"name": "documentation",
"version": "1.0.0",
"engines": {
"node": ">=18"
},
"packageManager": "yarn@1.0.0",
"repository": "git@github.com:OrderlyNetwork/documentation.git",
"contributors": [
"Slava Gerashenko <slava@orderly.network>",
"Mario Reder <mario@orderly.network>"
],
"license": "MIT",
"scripts": {
"update": "tsx ./update.ts",
"update:llms": "tsx ./generate-llms.ts",
"check:ai-docs": "tsx ./verify-ai-docs.ts",
"lint": "markdownlint '**/*.mdx' --ignore node_modules --ignore sdks/tech-doc",
"lint:fix": "markdownlint '**/*.mdx' --ignore node_modules --ignore sdks/tech-doc --fix",
"format": "prettier --write '**/*.mdx' --ignore-path .gitignore",
"format:check": "prettier --check '**/*.mdx' --ignore-path .gitignore",
"dev": "npx mintlify dev"
},
"devDependencies": {
"@types/node": "^20.11.30",
"chalk": "^5.3.0",
"rimraf": "^5.0.5",
"tsx": "^4.7.1",
"typescript": "^5.4.2"
},
"dependencies": {
"mintlify": "^4.2.257"
}
}