forked from arkmadj/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.15 KB
/
package.json
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
46
47
48
49
{
"name": "@directus/docs",
"version": "9.18.0",
"main": "dist/index.js",
"exports": {
".": "./dist/index.js",
"./package.json": "./package.json"
},
"scripts": {
"spellcheck": "spellchecker -p spell indefinite-article repeated-words syntax-mentions syntax-urls frontmatter",
"dev": "vitepress dev .",
"build": "vitepress build .",
"serve": "vitepress serve .",
"update-thumbnail": "thumbsmith deploy .thumbsmith/docs.thumbnail.html || exit 0",
"build:md": "node build.js"
},
"author": "Rijk van Zanten <[email protected]>",
"contributors": [
"Eron Donevan Powell"
],
"devDependencies": {
"@thumbsmith/url": "^0.1.2",
"@vueuse/head": "^0.7.8",
"directory-tree": "^3.3.0",
"lint-staged": "^13.0.3",
"prettier": "2.7.1",
"reading-time": "^1.5.0",
"simple-git-hooks": "^2.8.0",
"spellchecker-cli": "^6.0.2",
"vitepress": "1.0.0-alpha.15",
"vue": "^3.2.37"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*.{md,yaml}": "prettier --write"
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"@algolia/client-search",
"react",
"react-dom",
"@types/react"
]
}
}
}