-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
117 lines (117 loc) · 3.12 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "vite-plugin-vue-preview",
"type": "module",
"version": "1.3.0",
"private": false,
"packageManager": "[email protected]",
"description": "a vite plugin for vue preview in markdown",
"author": "liting <[email protected]>",
"license": "MIT",
"homepage": "https://vite-plugin-vue-preview.netlify.app",
"repository": {
"type": "git",
"url": "https://github.com/liting-yes/vite-plugin-vue-preview.git"
},
"bugs": {
"url": "https://github.com/liting-yes/vite-plugin-vue-preview/issues"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"keywords": [
"vite",
"plugin",
"vue",
"vitepress",
"preview",
"editor",
"demo",
"code-preview",
"markdown"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"import": "./dist/index.js"
},
"./style.css": "./dist/style.css"
},
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"lint": "eslint .",
"format": "eslint --fix .",
"commit": "git add . && git-cz",
"release": "bumpp -r",
"build": "vite build",
"prepare": "git config core.hooksPath .git/hooks/ && npx simple-git-hooks",
"test-vue": "vite test/vue --host",
"test-vue:build": "vite build test/vue",
"test-vue:preview": "vite preview test/vue",
"test-vitepress": "vitepress dev test/vitepress --host",
"test-vitepress:build": "vitepress build test/vitepress",
"test-vitepress:preview": "vitepress preview test/vitepress",
"test-ct": "playwright test -c playwright-ct.config.ts"
},
"peerDependencies": {
"@vitejs/plugin-vue": "^4.0.0",
"vite": "^4.1.2",
"vue": "^3.2.47"
},
"devDependencies": {
"@antfu/eslint-config": "^0.43.1",
"@commitlint/cli": "^17.4.2",
"@commitlint/config-conventional": "^17.4.2",
"@commitlint/cz-commitlint": "^17.4.2",
"@liting-yes/vue-repl": "^0.7.2",
"@playwright/experimental-ct-vue": "^1.35.1",
"@tsconfig/node-lts-strictest": "^18.12.1",
"@types/fs-extra": "^11.0.1",
"@types/node": "^20.1.7",
"@vitejs/plugin-vue": "^4.0.0",
"@vue/compiler-dom": "^3.3.4",
"@vueuse/core": "^10.1.2",
"bumpp": "^9.1.1",
"commitizen": "^4.3.0",
"consola": "^3.1.0",
"eslint": "^8.32.0",
"fs-extra": "^11.1.1",
"inquirer": "8",
"lint-staged": "^13.1.0",
"local-pkg": "^0.5.0",
"react": "^18.2.0",
"release-it": "^15.6.0",
"rollup-plugin-visualizer": "^5.9.2",
"sass": "^1.63.4",
"simple-git-hooks": "^2.8.1",
"typescript": "^5.0.4",
"vite": "^4.1.2",
"vite-plugin-banner": "^0.8.0",
"vite-plugin-dts": "2.3.0",
"vitepress": "1.5.0",
"vue": "^3.2.47"
},
"config": {
"commitizen": {
"path": "@commitlint/cz-commitlint"
}
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged",
"commit-msg": "npx commitlint --edit ''"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,md,json,yml}": "eslint --fix"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}