-
-
Notifications
You must be signed in to change notification settings - Fork 259
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.64 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.64 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
45
46
47
48
49
50
51
{
"name": "honkit-root",
"version": "6.1.6",
"private": true,
"homepage": "https://github.com/honkit/honkit",
"bugs": {
"url": "https://github.com/honkit/honkit/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/honkit/honkit.git"
},
"keywords": [
"Markdown",
"Book",
"HonKit",
"GitBook"
],
"license": "Apache-2.0",
"authors": [
"azu. <[email protected]>"
],
"scripts": {
"lint": "eslint .",
"lint-all": "pnpm -r --filter \"!@example/*\" run lint",
"build": "pnpm -r --filter \"!@example/*\" run build",
"clean": "pnpm -r --filter \"!@example/*\" run clean",
"clean-deps": "rm -rf node_modules && pnpm -r exec rm -rf node_modules",
"test": "pnpm -r --filter \"!@example/*\" run test",
"updateSnapshot": "pnpm -r --filter \"!@example/*\" run updateSnapshot",
"versionup": "echo 'Error: Please use CI for versioning. Run gh workflow run create-release-pr instead.' && exit 1",
"honkit:build": "npm run build && honkit build",
"honkit:serve": "honkit serve",
"format": "prettier --write \"**/*.{mjs,js,jsx,ts,tsx,css}\"",
"prepare": "git config --local core.hooksPath .githooks"
},
"devDependencies": {
"@honkit/cleaning-tools": "workspace:*",
"eslint": "^9.12.0",
"honkit": "workspace:*",
"lint-staged": "^16.0.0",
"prettier": "^3.3.3",
"typescript": "^5.6.2"
},
"lint-staged": {
"*.{mjs,js,jsx,ts,tsx,css}": [
"prettier --write"
]
},
"packageManager": "[email protected]+sha512.4abf725084d7bcbafbd728bfc7bee61f2f791f977fd87542b3579dcb23504d170d46337945e4c66485cd12d588a0c0e570ed9c477e7ccdd8507cf05f3f92eaca"
}