generated from mintlify/starter
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 755 Bytes
/
package.json
File metadata and controls
23 lines (23 loc) · 755 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": "docs-v2",
"version": "1.0.0",
"private": true,
"description": "ZK Compression Documentation",
"scripts": {
"dev": "mintlify dev",
"lint": "eslint 'snippets/**/*.{js,jsx}'",
"lint:fix": "eslint 'snippets/**/*.{js,jsx}' --fix",
"format": "prettier --write 'snippets/**/*.{js,jsx}'",
"format:check": "prettier --check 'snippets/**/*.{js,jsx}'",
"spellcheck": "cspell '**/*.mdx' --no-progress",
"generate:llms": "node scripts/generate-llms-txt.js",
"ci": "npm run format:check && npm run lint && npm run spellcheck"
},
"devDependencies": {
"cspell": "^8.19.4",
"eslint": "^8.57.0",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.2",
"prettier": "^3.2.5"
}
}