-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
29 lines (29 loc) · 949 Bytes
/
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
{
"name": "doc-developer",
"version": "1.0.0",
"description": "Caido Developer Documentation",
"main": "index.js",
"scripts": {
"dev": "vitepress dev",
"build": "vitepress build",
"preview": "vitepress preview",
"lint": "pnpm lint:js && pnpm lint:md",
"lint:js": "ESLINT_ENV=production eslint ./.vitepress -c ./eslint.config.mjs --max-warnings 0",
"lint:md": "markdownlint-cli2 'src/**/*.md' '!src/reference/sdks/**/*.md' '!src/reference/modules/**/*.md'",
"generate:sdk": "./scripts/sdk.sh"
},
"author": "Caido Labs Inc. <[email protected]>",
"license": "CC-BY-4.0",
"devDependencies": {
"eslint": "9.10.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-vue": "9.27.0",
"markdownlint-cli2": "0.14.0",
"typescript": "5.6.2",
"typescript-eslint": "8.5.0",
"vitepress": "1.2.2",
"vue": "3.5.12",
"vue-eslint-parser": "9.4.3"
}
}