forked from farcasterxyz/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 694 Bytes
/
package.json
File metadata and controls
23 lines (23 loc) · 694 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "www-farcaster-xyz",
"version": "1.0.0",
"main": "index.js",
"license": "UNLICENSED",
"devDependencies": {
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"prettier": "^2.8.7",
"vitepress": "^1.3.1"
},
"scripts": {
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs",
"lint": "prettier --config \"./.prettierrc.yml\" --write \"**/*.{json,md}\"",
"lint:check": "prettier --config \"./.prettierrc.yml\" --check \"**/*.{json,md}\"",
"postinstall": "husky install"
},
"lint-staged": {
"*.md": "prettier --config \"./.prettierrc.yml\" --write \"**/*.{json,md}\""
}
}