-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 2.16 KB
/
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "vitepress-template",
"description": "A template with VitePress with many add-ons and useful features.",
"licenses": [
{
"type": "MIT",
"url": "https://github.com/krudi/vite-template/LICENSE"
}
],
"version": "0.1.0",
"authors": [
{
"name": "krudi",
"email": "[email protected]",
"url": "https://github.com/krudi/vitepress-template"
}
],
"private": false,
"homepage": "https://github.com/krudi/vitepress-template#readme",
"bugs": {
"url": "https://github.com/krudi/vitepress-template/issue"
},
"keywords": [
"frontend"
],
"repository": {
"type": "git",
"url": "https://github.com/krudi/vitepress-template.git"
},
"engines": {
"node": ">= 20.11.0",
"npm": ">= 10.8.1"
},
"type": "module",
"scripts": {
"dev": "vitepress dev docs",
"preview": "vitepress preview docs",
"build": "vitepress build docs",
"lint:js": "eslint -c ./eslint.config.mjs",
"lint:js:fix": "eslint -c ./eslint.config.mjs --fix",
"lint:files": "prettier --check \"**/*.{js,ts,vue,css,html,xml,yaml,yml,json,json5,graphql,gql}\"",
"lint:files:fix": "prettier --write \"**/*.{js,ts,vue,css,html,xml,yaml,yml,json,json5,graphql,gql}\"",
"lint:markdown": "markdownlint ./docs/**/*.md",
"lint:markdown:fix": "markdownlint --fix ./docs/**/*.md",
"lint:full": "npm run lint:js && npm run lint:files && npm run lint:markdown",
"lint:full:fix": "npm run lint:js:fix && npm run lint:files:fix && npm run lint:markdown:fix"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@types/eslint__js": "^8.42.3",
"@types/node": "^22.10.5",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"markdownlint": "^0.37.3",
"markdownlint-cli": "^0.43.0",
"prettier": "^3.4.2",
"ts-node": "^10.9.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.19.0",
"vitepress": "^1.5.0"
}
}