-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.13 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 2.13 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
66
67
68
69
70
71
72
73
74
75
{
"name": "@vanduo-oss/vd3-docs",
"version": "1.4.0",
"description": "Vue 3 + vite-ssg documentation site for the vd3 line (@vanduo-oss/vd3 + @vanduo-oss/vd3-cbun)",
"private": true,
"type": "module",
"homepage": "https://vd3.vanduo.dev/",
"license": "MIT",
"author": "vanduo-oss",
"exports": {
".": "./src/main.ts"
},
"files": [
"dist/",
"CHANGELOG.md",
"CONTRIBUTING.md",
"LICENSE",
"README.md"
],
"scripts": {
"dev": "vite",
"build": "vite-ssg build && node scripts/generate-sitemap.mjs",
"preview": "vite preview --port 8787 --host",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"stylelint": "stylelint \"src/**/*.css\"",
"format": "prettier --write \"src/**/*.{ts,vue,css}\"",
"format:check": "prettier --check \"src/**/*.{ts,vue,css}\"",
"typecheck": "vue-tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:size": "node tests/scripts/size.mjs",
"test:e2e": "playwright test --project='Chromium Desktop'",
"test:e2e:full": "playwright test",
"test:a11y": "playwright test a11y-smoke --project='Chromium Desktop'"
},
"dependencies": {
"@unhead/vue": "2.1.15",
"@vanduo-oss/vd3": "1.6.0",
"@vanduo-oss/vd3-cbun": "1.4.0",
"animejs": "4.5.0",
"pinia": "^3.0.4",
"vue": "^3.5.40",
"vue-router": "^5.2.0"
},
"devDependencies": {
"@axe-core/playwright": "4.12.1",
"@eslint/js": "10.0.1",
"@playwright/test": "^1.62.1",
"@types/node": "^26.1.2",
"@typescript-eslint/parser": "8.62.0",
"@vitejs/plugin-vue": "^6.0.8",
"@vue/test-utils": "^2.4.11",
"@vue/tsconfig": "^0.9.1",
"axe-core": "4.12.1",
"eslint": "^10.8.0",
"eslint-plugin-vue": "^10.10.0",
"jsdom": "^29.1.1",
"prettier": "^3.9.6",
"stylelint": "^17.14.1",
"stylelint-config-standard": "^40.0.0",
"typescript": "^6.0.3",
"typescript-eslint": "8.62.0",
"vite": "^8.2.0",
"vite-ssg": "^28.3.0",
"vitest": "^4.1.10",
"vue-eslint-parser": "10.4.1",
"vue-tsc": "^3.3.8"
},
"engines": {
"node": ">=24",
"pnpm": ">=10"
},
"packageManager": "pnpm@10.28.2"
}