-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.1 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 1.1 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
{
"type": "module",
"dependencies": {
"@headlessui/vue": "^1.7.23",
"@heroicons/vue": "^2.2.0",
"autoprefixer": "^10.4.23",
"fuse.js": "^7.1.0",
"highlight.js": "^11.11.1",
"highlightjs-spl": "^0.1.2",
"markdown-it-footnote": "^4.0.0",
"open-graph-scraper": "^6.11.0",
"postcss": "^8.5.6",
"tailwindcss": "^3.4.19",
"vitepress": "^1.6.4",
"vue": "^3.5.26"
},
"devDependencies": {
"@tailwindcss/forms": "^0.5.11",
"@tailwindcss/typography": "^0.5.19",
"@vue/eslint-config-typescript": "^14.6.0",
"markdown-it": "^14.1.0",
"markdownlint": "^0.40.0",
"markdownlint-cli2": "^0.20.0",
"prettier": "^3.7.4",
"prettier-plugin-tailwindcss": "^0.7.2"
},
"scripts": {
"docs:dev": "vitepress dev .",
"docs:build": "vitepress build .",
"docs:serve": "vitepress serve .",
"lint": "prettier --check . && markdownlint-cli2 --config .markdownlint.json '**/*.md' '#node_modules' && eslint .",
"lint:fix": "prettier --write . && markdownlint-cli2 --config .markdownlint.json '**/*.md' '#node_modules' --fix && eslint . --fix"
}
}