forked from vuejs/repl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
109 lines (109 loc) · 2.99 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
{
"name": "@liting-yes/vue-repl",
"version": "1.6.0",
"description": "Vue component for editing Vue components",
"packageManager": "[email protected]",
"type": "module",
"main": "dist/ssr-stub.js",
"module": "dist/vue-repl.js",
"files": [
"dist"
],
"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/editor-types.d.ts",
"import": "./dist/monaco-editor.js",
"require": null
},
"./codemirror-editor": {
"types": "./dist/editor-types.d.ts",
"import": "./dist/codemirror-editor.js",
"require": null
},
"./style.css": "./dist/style.css",
"./dist/style.css": "./dist/style.css"
},
"scripts": {
"dev": "vite --port 5555",
"build": "vite build",
"build-types": "vue-tsc -p tsconfig.build.json && api-extractor run -c api-extractor.json && node scripts/cleanup.js",
"build-preview": "vite build -c vite.preview.config.ts",
"format": "prettier --write .",
"release": "bumpp -r",
"prepublishOnly": "npm run build && npm run build-types",
"commit": "git add . && git-cz",
"prepare": "npx simple-git-hooks"
},
"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/liting-yes/vue-repl.git"
},
"author": "Evan You",
"license": "MIT",
"bugs": {
"url": "https://github.com/liting-yes/vue-repl/issues"
},
"homepage": "https://github.com/liting-yes/vue-repl#readme",
"devDependencies": {
"@babel/types": "^7.15.6",
"@commitlint/cli": "^17.6.6",
"@commitlint/config-conventional": "^17.6.6",
"@commitlint/cz-commitlint": "^17.5.0",
"@microsoft/api-extractor": "^7.34.4",
"@rollup/plugin-replace": "^5.0.2",
"@types/codemirror": "^5.60.8",
"@types/node": "^20.3.2",
"@vitejs/plugin-vue": "^4.2.3",
"@volar/cdn": "~1.8.0",
"@volar/monaco": "~1.8.0",
"@volar/typescript": "~1.8.0",
"@vue/language-service": "1.8.4",
"@vueuse/core": "^10.2.0",
"bumpp": "^9.1.1",
"codemirror": "^5.62.3",
"commitizen": "^4.3.0",
"fflate": "^0.7.3",
"hash-sum": "^2.0.0",
"inquirer": "8",
"lint-staged": "^13.2.2",
"monaco-editor-core": "^0.38.0",
"monaco-editor-textmate": "^4.0.0",
"monaco-textmate": "^3.0.1",
"monaco-volar": "^0.4.0",
"onigasm": "^2.2.5",
"path-browserify": "^1.0.1",
"prettier": "^2.8.8",
"rimraf": "^3.0.2",
"sass": "^1.63.6",
"simple-git-hooks": "^2.8.1",
"sucrase": "^3.32.0",
"typescript": "^5.1.3",
"vite": "^4.3.9",
"vue": "^3.3.4",
"vue-tsc": "1.8.1"
},
"config": {
"commitizen": {
"path": "@commitlint/cz-commitlint"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}