-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.16 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.16 KB
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
40
{
"name": "drone-docs",
"version": "1.0.1",
"description": "FPV guides",
"type": "module",
"main": "index.js",
"repository": "https://github.com/ikherty/droneDOCS.git",
"author": "ikherty <ikherty@gmail.com>",
"license": "MIT",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.49.0",
"@typescript-eslint/parser": "^5.49.0",
"eslint": "^8.32.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-markdown": "^3.0.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-vue": "^9.9.0",
"feed": "^5.2.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"prettier": "^2.8.3",
"sass": "^1.58.0",
"sharp": "^0.34.5",
"svgo": "^4.0.0",
"typescript": "^5.9.0",
"vite-plugin-image-optimizer": "^2.0.3"
},
"scripts": {
"dev": "vitepress dev docs --host",
"build": "vitepress build docs",
"preview": "vitepress preview docs",
"build-preview": "yarn build && yarn preview",
"lint": "eslint . --fix",
"format-all": "npx prettier . --write --ignore-unknown",
"prepare": "husky"
},
"dependencies": {
"vitepress": "^1.6.0"
}
}