-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·38 lines (38 loc) · 910 Bytes
/
package.json
File metadata and controls
executable file
·38 lines (38 loc) · 910 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
33
34
35
36
37
38
{
"name": "@nandenjin/posts",
"version": "0.0.1",
"description": "Misc posts from Kazumi Inada",
"main": "index.js",
"type": "module",
"authors": {
"name": "Kazumi Inada",
"email": "hello@nandenjin.com"
},
"repository": "https://github.com/nandenjin/posts.git/@nandenjin/posts",
"engines": {
"node": "24"
},
"private": true,
"scripts": {
"dev": "vitepress dev .",
"build": "vitepress build .",
"format": "prettier --write '**/*.{js,md,vue,yaml,yml,json}'",
"prepare": "simple-git-hooks"
},
"license": "MIT",
"devDependencies": {
"lint-staged": "16.4.0",
"prettier": "3.8.1",
"simple-git-hooks": "2.13.1",
"vitepress": "1.6.4"
},
"dependencies": {
"markdown-it-footnote": "4.0.0"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*.{js,md,vue,yaml,yml,json}": "prettier --write"
}
}