-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 1.98 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "@destyler/vitepress-theme",
"type": "module",
"version": "0.1.2",
"description": "VitePress theme for destyler.org.",
"author": "Elone Hoo <hi@elonehoo.me>",
"license": "MIT",
"keywords": [
"destyler",
"design-system"
],
"exports": {
".": "./src/index.ts",
"./config": {
"types": "./src/vitepress/config/baseConfig.d.ts",
"default": "./src/vitepress/config/baseConfig.js"
},
"./unocss": {
"types": "./src/vitepress/unocss/index.d.ts",
"default": "./src/vitepress/unocss/index.js"
},
"./src/*": "./src/*"
},
"main": "src/index.ts",
"files": [
"src",
"types"
],
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"type": "vue-tsc --noEmit",
"test": "npm run lint && npm run type",
"docs:dev": "pnpm -C docs run dev",
"docs:build": "pnpm -C docs run build",
"docs:preview": "pnpm -C docs run preview",
"serve": "pnpm run docs:build && pnpm run docs:preview",
"docs:zip": "tsx scripts/docs/zip.ts",
"release": "bumpp && pnpm -r publish --access public"
},
"peerDependencies": {
"@unocss/reset": ">=0.62.4",
"destyler": ">=0.0.4",
"unocss": ">=0.62.4",
"unocss-preset-animations": ">=1.1.0",
"vitepress": ">=1.3.4"
},
"dependencies": {
"@vueuse/core": "^11.1.0",
"body-scroll-lock": "4.0.0-beta.0",
"normalize.css": "^8.0.1",
"tiny-decode": "^0.1.3"
},
"devDependencies": {
"@antfu/eslint-config": "^3.7.3",
"@mdit-vue/types": "^2.1.0",
"@types/body-scroll-lock": "^3.1.2",
"@types/estree": "^1.0.6",
"@types/node": "^22.7.5",
"@unocss/reset": "^0.63.4",
"archiver": "^7.0.1",
"bumpp": "^9.7.1",
"destyler": "^0.0.6",
"eslint": "^9.12.0",
"fs-extra": "^11.2.0",
"prettier": "^3.3.3",
"tsx": "^4.19.1",
"typescript": "^5.6.3",
"unocss": "^0.63.4",
"unocss-preset-animations": "^1.1.0",
"vitepress": "^1.4.0",
"vue": "^3.5.11",
"vue-tsc": "^2.1.6"
}
}