forked from vuejs/repl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
111 lines (111 loc) · 2.85 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": "@vue/repl",
"version": "3.1.1",
"description": "Vue component for editing Vue components",
"packageManager": "[email protected]",
"type": "module",
"main": "dist/ssr-stub.js",
"module": "dist/vue-repl.js",
"files": [
"dist",
"chii"
],
"types": "dist/vue-repl.d.ts",
"exports": {
".": {
"types": "./dist/vue-repl.d.ts",
"import": "./dist/vue-repl.js",
"require": "./dist/ssr-stub.js"
},
"./monaco-editor": {
"types": "./dist/monaco-editor.d.ts",
"import": "./dist/monaco-editor.js",
"require": null
},
"./codemirror-editor": {
"types": "./dist/codemirror-editor.d.ts",
"import": "./dist/codemirror-editor.js",
"require": null
},
"./preview-chii": {
"types": "./dist/preview-chii.d.ts",
"import": "./dist/preview-chii.js"
},
"./preview-normal": {
"types": "./dist/preview-normal.d.ts",
"import": "./dist/preview-normal.js"
},
"./plugin-vite": {
"types": "./dist/plugin-vite.d.ts",
"import": "./dist/plugin-vite.js"
},
"./style.css": "./dist/vue-repl.css",
"./dist/style.css": "./dist/vue-repl.css"
},
"typesVersions": {
"*": {
"*": [
"./dist/*",
"./*"
]
}
},
"scripts": {
"dev": "vite",
"build": "vite build",
"build-preview": "vite build -c vite.preview.config.ts",
"format": "prettier --write .",
"release": "bumpp --all",
"version": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"prepublishOnly": "npm run build"
},
"simple-git-hooks": {
"pre-commit": "pnpm exec lint-staged --concurrent false"
},
"lint-staged": {
"*": [
"prettier --write --cache --ignore-unknown"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/vuejs/repl.git"
},
"author": "Evan You",
"license": "MIT",
"bugs": {
"url": "https://github.com/vuejs/repl/issues"
},
"homepage": "https://github.com/vuejs/repl#readme",
"devDependencies": {
"@babel/types": "^7.23.6",
"@rollup/plugin-replace": "^5.0.5",
"@types/codemirror": "^5.60.15",
"@types/node": "^20.10.5",
"@vitejs/plugin-vue": "^5.0.0",
"@volar/cdn": "~1.11.1",
"@volar/monaco": "~1.11.1",
"@volar/typescript": "~1.11.1",
"@vue/language-service": "1.9.0-alpha.3",
"bumpp": "^9.2.1",
"codemirror": "^5.65.16",
"conventional-changelog-cli": "^4.1.0",
"fflate": "^0.8.1",
"hash-sum": "^2.0.0",
"lint-staged": "^15.2.0",
"monaco-editor-core": "^0.45.0",
"prettier": "^3.1.1",
"shikiji": "^0.9.10",
"shikiji-monaco": "^0.9.10",
"simple-git-hooks": "^2.9.0",
"sucrase": "^3.34.0",
"typescript": "^5.3.3",
"vite": "^5.0.10",
"vite-plugin-dts": "^3.6.4",
"vue": "^3.4.3",
"vue-tsc": "1.9.0-alpha.3"
},
"dependencies": {
"chobitsu": "^1.4.6"
}
}