-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.51 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 2.51 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
{
"name": "@altus4/website",
"private": true,
"version": "0.2.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vue-tsc -b && vite build",
"build:all": "npm run build && npm run docs:build && npm run copy:docs",
"copy:docs": "mkdir -p dist/docs && cp -r docs/.vitepress/dist/* dist/docs/",
"preview": "vite preview",
"lint": "eslint . --ext .vue,.js,.ts,.jsx,.tsx --ignore-pattern 'docs/**/*.md'",
"lint:fix": "eslint . --ext .vue,.js,.ts,.jsx,.tsx --ignore-pattern 'docs/**/*.md' --fix",
"format": "npm run lint:fix && npm run format:prettier && npm run lint:md:fix",
"format:check": "npm run lint && npm run lint:md && npm run format:prettier:check",
"format:all": "npm run format && npm run lint:all",
"lint:md": "markdownlint-cli2 \"**/*.md\" \"!node_modules/**\"",
"lint:md:fix": "markdownlint-cli2 --fix \"**/*.md\" \"!node_modules/**\"",
"lint:docs": "npm run lint:md",
"lint:all": "npm run lint && npm run lint:md",
"format:prettier": "prettier --write \"**/*.{js,ts,vue,json,css,scss}\" --ignore-path .gitignore",
"format:prettier:check": "prettier --check \"**/*.{js,ts,vue,json,css,scss}\" --ignore-path .gitignore",
"docs:dev": "vitepress dev docs --port 5174",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs",
"docs:sync": "bash scripts/sync-docs.sh",
"docs:sync:force": "bash scripts/sync-docs.sh 'docs: manual sync'"
},
"dependencies": {
"@vueuse/core": "^13.8.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-vue-next": "^0.542.0",
"mermaid": "^11.10.1",
"radix-vue": "^1.9.17",
"reka-ui": "^2.5.0",
"tailwind-merge": "^3.3.1",
"tailwindcss-animate": "^1.0.7",
"vue": "^3.5.18"
},
"devDependencies": {
"@eslint/js": "^9.34.0",
"@tailwindcss/typography": "^0.5.16",
"@types/node": "^24.3.0",
"@typescript-eslint/eslint-plugin": "^8.41.0",
"@typescript-eslint/parser": "^8.41.0",
"@vitejs/plugin-vue": "^6.0.1",
"@vue/tsconfig": "^0.7.0",
"autoprefixer": "^10.4.21",
"eslint": "^9.34.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-markdown": "^5.1.0",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-vue": "^10.4.0",
"markdownlint-cli2": "^0.18.1",
"postcss": "^8.5.6",
"prettier": "^3.6.2",
"tailwindcss": "^3.4.17",
"typescript": "~5.8.3",
"vite": "^7.1.2",
"vitepress": "^2.0.0-alpha.12",
"vue-eslint-parser": "^10.2.0",
"vue-tsc": "^3.0.5"
}
}