-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
111 lines (111 loc) · 2.61 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
{
"name": "vitepress-plugin-sandpack",
"version": "1.1.4",
"description": "use sandpack-vue3 in vitepress as directive.",
"keywords": [
"vue",
"vue3",
"vitepress",
"plugin",
"vitepress-plugin",
"sandpack",
"sandpack-vue3",
"codesandpack"
],
"homepage": "https://vitepress-sandbox.js-bridge.com",
"bugs": {
"url": "https://github.com/jerrywu001/vitepress-plugin-sandpack/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jerrywu001/vitepress-plugin-sandpack.git"
},
"license": "MIT",
"author": "jerrywu001 <57242263@163.com>",
"main": "./dist/index.js",
"module": "./dist/esm/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/esm/index.mjs",
"require": "./dist/index.js"
},
"./*": [
"./*",
"./*.d.ts"
]
},
"typesVersions": {
"*": {
"*": [
"./dist/*",
"./*"
]
}
},
"files": [
"dist",
"package.json",
"README.md"
],
"workspaces": [
"docs"
],
"scripts": {
"build": "vite build",
"docs": "npm run docs:dev -w docs",
"build:docs": "npm run docs:build -w docs",
"preview:docs": "npm run docs:serve -w docs",
"lint": "eslint --ext .ts,.tsx,.vue ./src",
"prepare": "chmod a+x .husky/* && husky install",
"prepublishOnly": "npm run build",
"release": "bumpp --commit --tag --push",
"typecheck": "tsc && vue-tsc"
},
"dependencies": {
"@codesandbox/sandpack-themes": "^2.0.21",
"markdown-it-container": "^3.0.0",
"sandpack-vue3": "^3.1.11"
},
"devDependencies": {
"@commitlint/cli": "^18.6.0",
"@commitlint/config-conventional": "^18.6.0",
"@typescript-eslint/eslint-plugin": "^6.20.0",
"@typescript-eslint/parser": "^6.20.0",
"@vitejs/plugin-vue": "^4.6.2",
"@vue/eslint-config-typescript": "^12.0.0",
"babel-loader": "^9.1.3",
"bumpp": "^9.3.0",
"eslint": "^8.56.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-vue": "^9.20.1",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"npm": "^10.4.0",
"typescript": "^5.3.3",
"vite-plugin-dts": "^3.7.2",
"vue-tsc": "^1.8.27"
},
"peerDependencies": {
"vite": ">=4.0.0",
"vitepress": "^1.0.0-beta.1",
"vue": ">=3.2.0"
},
"peerDependenciesMeta": {
"vue": {
"optional": true
},
"vite": {
"optional": true
},
"vitepress": {
"optional": true
}
},
"engines": {
"node": ">=16"
}
}