-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 926 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 926 Bytes
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
{
"name": "inkdex.github.io",
"description": "The Inkdex website.",
"private": true,
"type": "module",
"scripts": {
"lint": "oxlint --type-aware --fix",
"lint:check": "oxlint --type-aware --deny-warnings",
"format": "prettier --write '**/*{.md,.yml,.yaml,.json,.js,.ts,.vue}' --cache",
"format:check": "prettier --check '**/*{.md,.yml,.yaml,.json,.js,.ts,.vue}' --cache",
"vue-tsc": "vue-tsc",
"build": "vitepress build src",
"preview": "vitepress preview src",
"dev": "vitepress dev src",
"test": "npm run vue-tsc && npm run lint:check && npm run format:check && npm run build",
"prepare": "husky"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.7.1",
"husky": "^9.1.7",
"oxlint": "^1.56.0",
"oxlint-tsgolint": "^0.17.1",
"prettier": "^3.8.1",
"vitepress": "^2.0.0-alpha.17",
"vue": "^3.5.30",
"vue-tsc": "^3.2.6"
}
}