-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
61 lines (61 loc) · 1.5 KB
/
package.json
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
{
"name": "docs",
"type": "module",
"version": "0.1.0",
"packageManager": "[email protected]",
"scripts": {
"dev": "vitepress dev",
"build": "vitepress build",
"preview": "vitepress preview",
"contributors": "tsx scripts/update-contributors.ts",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"peerDependencies": {
"typescript": "*"
},
"dependencies": {
"@oku-ui/motion": "^0.4.0",
"@oku-ui/primitives": "^0.7.3",
"@shikijs/vitepress-twoslash": "^1.23.1",
"@stackblitz/sdk": "^1.11.0",
"@vueuse/core": "^11.2.0",
"vue": "^3.5.13",
"vue-sonner": "^1.2.5"
},
"devDependencies": {
"@antfu/eslint-config": "^3.9.2",
"@babel/traverse": "^7.25.9",
"@iconify/vue": "^4.1.2",
"@radix-ui/colors": "^3.0.0",
"@types/babel__traverse": "^7.20.6",
"@types/fs-extra": "^11.0.4",
"@types/markdown-it": "^14.1.2",
"@vue/tsconfig": "^0.5.1",
"autoprefixer": "^10.4.20",
"codesandbox": "^2.2.3",
"eslint": "^9.15.0",
"fast-glob": "^3.3.2",
"fs-extra": "^11.2.0",
"lint-staged": "^15.2.10",
"markdown-it": "^14.1.0",
"postcss": "^8.4.49",
"simple-git-hooks": "^2.11.1",
"tailwindcss": "^3.4.15",
"tsx": "^4.19.2",
"vitepress": "^1.5.0",
"vue-component-meta": "^2.1.10"
},
"postcss": {
"plugins": {
"tailwindcss": {},
"autoprefixer": {}
}
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "pnpm eslint . --fix"
}
}