-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.54 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.54 KB
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
{
"name": "vitepress-python-editor",
"version": "1.3.4",
"description": "Editor component for VitePress that runs Python in the browser",
"keywords": [
"vitepress",
"python",
"code",
"editor",
"vue",
"codemirror",
"pyodide"
],
"homepage": "https://vitepress-python-editor.netlify.app/",
"bugs": "https://github.com/zqianem/vitepress-python-editor/issues",
"license": "MIT",
"author": "Em Zhan <zqianem@gmail.com>",
"repository": {
"type": "git",
"url": "git+https://github.com/zqianem/vitepress-python-editor.git"
},
"type": "module",
"exports": {
".": "src/Editor.vue",
"./vite-plugin": "src/vite-plugin.js"
},
"scripts": {
"dev": "vitepress dev",
"build": "vitepress build",
"preview": "vitepress preview"
},
"dependencies": {
"@codemirror/commands": "^6.8.1",
"@codemirror/lang-python": "^6.2.1",
"@codemirror/language": "^6.11.2",
"@codemirror/state": "^6.5.2",
"@codemirror/view": "^6.38.0",
"@lezer/common": "^1.2.3",
"@lezer/highlight": "^1.2.1",
"vue": "^3.5.17"
},
"peerDependencies": {
"pyodide": "^0.28.0"
},
"devDependencies": {
"vitepress": "^1.6.3"
},
"packageManager": "pnpm@10.1.0+sha512.c89847b0667ddab50396bbbd008a2a43cf3b581efd59cf5d9aa8923ea1fb4b8106c041d540d08acb095037594d73ebc51e1ec89ee40c88b30b8a66c0fae0ac1b",
"pnpm": {
"patchedDependencies": {
"vitepress@1.6.3": "patches/vitepress@1.6.3.patch"
},
"allowNonAppliedPatches": true,
"onlyBuiltDependencies": [
"esbuild"
]
}
}