-
Notifications
You must be signed in to change notification settings - Fork 82
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.89 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.89 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"type": "module",
"private": true,
"scripts": {
"lint": "vue-tsc --noEmit && eslint docs",
"format": "prettier ${FORMAT_OPTIONS---write} \"*.{js,json,yml,yaml,md}\" \".github/**/*.{yml,yaml,cjs}\" \"docs/**/*.{ts,mts,vue,css,md,json,yml,yaml}\" \"deployments/**/*.{json,yml,yaml}\"",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@ianvs/prettier-plugin-sort-imports": "^4.7.1",
"@tailwindcss/vite": "^4.2.1",
"@types/js-yaml": "^4.0.9",
"@types/markdown-it": "^14.1.2",
"@types/node": "^24.10.9",
"@typescript-eslint/eslint-plugin": "^8.57.0",
"@typescript-eslint/parser": "^8.57.0",
"@viz-js/viz": "^3.25.0",
"autoprefixer": "^10.4.27",
"eslint": "^10.0.3",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-vue": "^10.8.0",
"fast-glob": "^3.3.3",
"gray-matter": "^4.0.3",
"js-yaml": "^4.1.1",
"markdown-it": "^14.1.1",
"markdown-it-deflist": "^3.0.0",
"markdown-it-footnote": "^4.0.0",
"prettier": "^3.8.1",
"prettier-plugin-tailwindcss": "^0.7.2",
"prettier-plugin-vitepress": "^0.0.10",
"sql-formatter": "^15.7.2",
"svgo": "^4.0.1",
"tailwindcss": "^4.2.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.57.0",
"vega": "^6.2.0",
"vite": "^5.4.21",
"vitepress": "^1.6.4",
"vue": "^3.5.30",
"vue-eslint-parser": "^10.4.0",
"vue-tsc": "^3.2.5"
},
"prettier": {
"plugins": [
"@ianvs/prettier-plugin-sort-imports",
"prettier-plugin-tailwindcss",
"prettier-plugin-vitepress"
],
"importOrder": [
"<BUILT_IN_MODULES>",
"",
"<TYPES>",
"<THIRD_PARTY_MODULES>",
"",
"<TYPES>^@theme/",
"<TYPES>^[.]",
"^@theme/",
"^[.]"
]
},
"packageManager": "pnpm@10.12.3"
}