-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
72 lines (72 loc) · 2.03 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
{
"name": "vuepress-plugin-vue-example",
"description": "A Vuepress 2 plugin to display Vue components' live examples and source code inside documentation",
"version": "0.0.0-semantic-release",
"author": "Giannis Koutsaftakis",
"license": "MIT",
"repository": "https://github.com/kouts/vuepress-plugin-vue-example",
"keywords": [
"vuepress",
"code",
"example",
"vue",
"demo",
"demo-code",
"documentation"
],
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"exports": {
".": "./dist/index.js",
"./VueExample": "./dist/VueExample.js",
"./style.css": "./dist/assets/style.css"
},
"files": [
"dist"
],
"scripts": {
"docs:dev": "IS_LOCAL_DEV=true vuepress dev docs",
"docs:build": "IS_LOCAL_DEV=true vuepress build docs",
"docs:preview": "npx serve -s public",
"build": "vite build",
"test:unit": "vitest",
"lint": "eslint \"**/*.{vue,ts,js,cjs}\"",
"lint-fix": "eslint --fix \"**/*.{vue,ts,js,cjs}\"",
"prepare": "husky"
},
"devDependencies": {
"@commitlint/cli": "^19.4.0",
"@commitlint/config-conventional": "^19.2.2",
"@kouts/eslint-config": "^1.3.3",
"@vitejs/plugin-vue": "^5.1.2",
"@vitest/eslint-plugin": "^1.0.3",
"@vue/compiler-sfc": "^3.4.38",
"@vue/test-utils": "^2.4.6",
"@vuepress/bundler-vite": "2.0.0-rc.15",
"@vuepress/plugin-register-components": "2.0.0-rc.37",
"@vuepress/plugin-search": "2.0.0-rc.41",
"@vuepress/theme-default": "2.0.0-rc.41",
"eslint": "^9.9.0",
"glob": "^11.0.0",
"husky": "^9.1.5",
"jsdom": "^24.1.1",
"lint-staged": "^15.2.9",
"lz-string": "^1.5.0",
"prettier": "^3.3.3",
"prismjs": "^1.29.0",
"sass": "^1.77.8",
"vite": "^5.4.2",
"vitest": "^2.0.5",
"vue": "^3.4.38",
"vuepress": "2.0.0-rc.15"
},
"resolutions": {
"@typescript-eslint/utils": "^8.0.0",
"vuepress": "2.0.0-rc.15"
},
"peerDependencies": {
"vuepress": "^2.0.0-rc.15",
"@vuepress/plugin-register-components": "2.0.0-rc.37"
}
}