-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.42 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.42 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
{
"name": "bondy_docs",
"version": "1.0.0",
"description": "Bondy Developer",
"main": "index.js",
"type": "module",
"repository": "https://github.com/bondy-io/bondy_docs.git",
"author": "Bondy Team",
"license": "CC-BY-SA-4.0",
"private": false,
"devDependencies": {
"markdownlint-cli": "^0.43.0",
"prettier": "^3.4.2",
"vitepress": "^1.6.4"
},
"scripts": {
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs",
"docs:serve": "vitepress preview docs",
"format": "prettier --write \"docs/**/*.md\" \"*.md\"",
"format:check": "prettier --check \"docs/**/*.md\" \"*.md\"",
"lint:md": "markdownlint \"docs/**/*.md\" --ignore node_modules",
"lint:md:fix": "markdownlint \"docs/**/*.md\" --ignore node_modules --fix",
"spellcheck": "make spellcheck",
"spellfix": "make spellfix",
"outdated": "yarn outdated",
"check": "yarn format:check && yarn lint:md && yarn spellcheck"
},
"dependencies": {
"@sindresorhus/slugify": "^2.1.1",
"@types/markdown-it": "^14.1.2",
"markdown-it": "^14.1.0",
"markdown-it-container": "^4.0.0",
"markdown-it-custom-block": "^1.0.0",
"markdown-it-deflist": "^3.0.0",
"markdown-it-footnote": "^4.0.0",
"markdown-it-katex": "^2.0.3",
"markdown-it-task-lists": "^2.1.1",
"medium-zoom": "^1.1.0",
"sitemap": "^8.0.0",
"switch-ts": "^1.0.9"
}
}