-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.02 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
{
"name": "zenn-docs",
"version": "1.0.0",
"description": "zenn articles and books",
"types": "modules",
"scripts": {
"dev": "npx zenn preview",
"fmt": "prettier . -w",
"check": "run-p check:*",
"new_Article": "npx zenn new:article",
"new_Book": "npx zenn new:book",
"check:eslint": "eslint .",
"package:update": "ncu -i",
"postpackage:update": "npm i",
"package:maintenance": "npm dedupe && npm prune"
},
"repository": "https://github.com/ken7253/zenn-docs.git",
"author": "ken7253 <ken7253@gmail.com>",
"license": "MIT",
"dependencies": {
"prettier": "^3.4.2",
"zenn-cli": "^0.1.158"
},
"devDependencies": {
"@eslint/js": "^9.15.0",
"eslint": "^9.17.0",
"eslint-plugin-markdown": "^5.1.0",
"eslint-plugin-react": "^7.37.4",
"globals": "^15.14.0",
"markdownlint": "^0.37.3",
"npm-check-updates": "^17.1.14",
"npm-run-all2": "^7.0.2",
"textlint": "^14.4.2",
"typescript-eslint": "^8.19.1"
},
"volta": {
"node": "22.11.0"
}
}