-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.74 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.74 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
59
60
61
62
63
64
65
{
"name": "monaco-volar",
"version": "0.4.0",
"description": "Vue support for monaco",
"main": "./dist/lib/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/lib/index.js",
"types": "./dist/index.d.ts"
},
"./vue.worker": {
"import": "./dist/worker/vue.worker.js",
"types": "./dist/vue.worker.d.ts"
}
},
"packageManager": "pnpm@8.11.0",
"repository": {
"type": "git",
"url": "git+https://github.com/Kingwl/monaco-volar.git"
},
"keywords": [
"monaco",
"vue"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/Kingwl/monaco-volar/issues"
},
"homepage": "https://github.com/Kingwl/monaco-volar#readme",
"dependencies": {
"onigasm": "^2.2.5"
},
"devDependencies": {
"@types/node": "^20.3.2",
"@volar/monaco": "1.7.9",
"@volar/typescript": "1.7.9",
"@vue/language-service": "1.8.2",
"esbuild": "^0.18.10",
"monaco-editor-core": "^0.39.0",
"monaco-editor-textmate": "^4.0.0",
"monaco-textmate": "^3.0.1",
"path-browserify": "^1.0.1",
"prettier": "^2.8.8",
"shiki": "^0.14.6",
"typescript": "^5.1.3",
"vite": "^4.3.9",
"volar-service-typescript": "0.0.8",
"vue": "^3.3.4"
},
"scripts": {
"build:lib": "vite build -c ./scripts/vite.lib.config.ts",
"build:worker": "vite build -c ./scripts/vite.worker.config.ts",
"build:dts": "tsc -p ./tsconfig.build.json",
"build": "pnpm build:lib && pnpm build:worker && pnpm build:dts",
"build:demo": "vite build -c ./vite.config.ts",
"dev": "vite dev",
"format:check": "prettier -c ./{src,tests,scripts}/*.ts ./vite.config.ts",
"format:fix": "pnpm format:check --write"
},
"files": [
"dist",
"README.md"
]
}