-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 873 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 873 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
27
28
29
30
31
32
{
"name": "artus-spec",
"scripts": {
"dev": "rspress dev",
"build": "rspress build",
"preview": "rspress preview",
"prettier": "prettier . --write",
"lint:md": "markdownlint -c .markdownlint.json docs/**/*.{md,mdx}"
},
"dependencies": {
"@rspress/core": "^2.0.7",
"rspress-plugin-mermaid": "^1.0.1"
},
"devDependencies": {
"@rspress/plugin-llms": "^2.0.8",
"@rspress/plugin-sitemap": "^2.0.8",
"@types/node": "^22.8.1",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"husky": "^8.0.3",
"lint-staged": "^15.1.0",
"markdownlint": "^0.33.0",
"markdownlint-cli": "^0.39.0",
"prettier": "3.1.0",
"react": "^19.2.4",
"react-dom": "^19.2.4"
},
"lint-staged": {
"*": "prettier --write --ignore-unknown",
"docs/**/*.{md,mdx}": "markdownlint -c .markdownlint.json"
}
}