-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.19 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.19 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
{
"name": "monaco-jsona",
"version": "0.2.0",
"description": "Jsona plugin for monaco editor",
"author": "Sigoden Huang <sigoden@gmail.com>",
"type": "module",
"module": "index.js",
"types": "index.d.ts",
"license": "MIT",
"scripts": {
"build:worker": "rollup -c rollup.config.worker.mjs",
"build:index": "tsc -p tsconfig.build.json",
"build": "npm run clean && npm run build:index && npm run build:worker",
"prepublish": "npm run build",
"clean": "rm -rf dist || rmdir /s /q dist"
},
"keywords": [
"monaco",
"jsona"
],
"files": [
"jsona.worker.js",
"index.js",
"index.d.ts"
],
"publishConfig": {
"access": "public"
},
"peerDependencies": {
"monaco-editor": ">=0.34"
},
"dependencies": {
"monaco-editor": "^0.34.0",
"monaco-languageclient": "^3.0.1",
"vscode-languageserver-protocol": "^3.17.2"
},
"devDependencies": {
"@jsona/lsp": "^0.2.0",
"@rollup/plugin-commonjs": "^25.0.4",
"@rollup/plugin-node-resolve": "^15.2.1",
"@types/node": "^20.6.3",
"@types/vscode": "^1.82.0",
"esbuild": "^0.19.3",
"rollup": "^3.29.2",
"rollup-plugin-esbuild": "^6.0.1",
"typescript": "^5.2.2"
}
}