-
Notifications
You must be signed in to change notification settings - Fork 88
/
package.json
51 lines (51 loc) · 1.22 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
50
51
{
"name": "@directus/docs",
"private": false,
"version": "9.13.2",
"main": "dist/index.js",
"exports": {
".": "./dist/index.js",
"./package.json": "./package.json"
},
"scripts": {
"dev:md": "npm-watch build",
"build:md": "node build.js",
"dev": "vuepress dev",
"build": "vuepress build && npm run update-thumbnail",
"update-thumbnail": "thumbsmith deploy .vuepress/.thumbsmith/docs.thumbnail.html || exit 0"
},
"watch": {
"build": {
"patterns": [
"."
],
"ignore": "dist",
"extensions": "md,yaml",
"silent": true,
"quiet": true
}
},
"author": "Rijk van Zanten <[email protected]>",
"devDependencies": {
"@thumbsmith/cli": "^0.1.8",
"@thumbsmith/url": "0.1.2",
"directory-tree": "3.0.1",
"fs-extra": "10.0.0",
"lint-staged": "^13.0.3",
"lodash.get": "4.4.2",
"micromark": "3.0.8",
"npm-watch": "0.11.0",
"prettier": "^2.7.1",
"reading-time": "1.5.0",
"simple-git-hooks": "^2.8.0",
"slugify": "1.6.2",
"vuepress": "1.8.2",
"vuepress-plugin-clean-urls": "1.1.2"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*.{md,yaml}": "prettier --write"
}
}