-
Notifications
You must be signed in to change notification settings - Fork 61
Expand file tree
/
Copy pathpackage.json
More file actions
142 lines (142 loc) · 5.73 KB
/
Copy pathpackage.json
File metadata and controls
142 lines (142 loc) · 5.73 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
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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
{
"name": "@codingame/monaco-vscode-api",
"version": "0.0.0-semantic-release",
"private": true,
"description": "VSCode public API plugged on the monaco editor",
"keywords": [],
"license": "MIT",
"author": {
"name": "CodinGame",
"url": "http://www.codingame.com"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/CodinGame/monaco-vscode-api.git"
},
"type": "module",
"scripts": {
"build": "npm run clean && npm run lint && npm run check-unsupported-decorator && npm run compile && npm run compile-rollup-plugins && npm run compile-default-extensions && npm run compile-language-packs && npm run compile-monaco-languages",
"compile": "NODE_OPTIONS=--max_old_space_size=16384 rollup --config rollup/rollup.config.ts --configPlugin 'typescript={tsconfig: `tsconfig.rollup-config.json`}' --vscode-version ${npm_package_config_vscode_version} --vscode-ref ${npm_package_config_vscode_ref} --vscode-commit ${npm_package_config_vscode_commit}",
"compile-default-extensions": "NODE_OPTIONS=--max_old_space_size=16384 rollup --config rollup/rollup.default-extensions.ts --configPlugin 'typescript={tsconfig: `tsconfig.rollup-config-default-extensions.json`}'",
"compile-language-packs": "NODE_OPTIONS=--max_old_space_size=16384 rollup --config rollup/rollup.language-packs.ts --configPlugin 'typescript={tsconfig: `tsconfig.rollup-config-language-packs.json`}'",
"compile-monaco-languages": "NODE_OPTIONS=--max_old_space_size=16384 rollup --config rollup/rollup.monaco.ts --configPlugin 'typescript={tsconfig: `tsconfig.rollup-config-monaco.json`}'",
"clean": "rm -rf dist/",
"compile-rollup-plugins": "rollup --config rollup/rollup.rollup-plugins.config.ts --configPlugin 'typescript={tsconfig: `tsconfig.rollup-config-plugins.json`, include: [`./rollup/rollup.rollup-plugins.config.ts`, `./rollup/rollup-metadata-plugin.ts`]}'",
"preprepare": "patch-package && mise exec -y -E vscode -- ./scripts/install-vscode && mise exec -y -E vscode -- ./scripts/install-monaco-editor",
"lint": "oxlint src rollup *.ts",
"update-vscode-dependencies": "tsx scripts/update-vscode-dependencies.ts",
"release": "tsx release.ts",
"reset:repo": "git clean -f -X -d",
"check-unsupported-decorator": "tsx scripts/check-unsupported-decorator.ts"
},
"config": {
"vscode": {
"version": "1.124.2",
"ref": "1.124.2",
"commit": "1.124.2"
},
"monaco": {
"ref": "v0.55.1",
"version": "0.55.1"
}
},
"devDependencies": {
"@babel/core": "^7.29.7",
"@babel/parser": "^7.18.6",
"@babel/plugin-proposal-decorators": "^7.29.7",
"@babel/preset-env": "^7.29.7",
"@babel/preset-typescript": "^7.29.7",
"@codingame/commitlint-config-codingame": "^1.2.1",
"@codingame/semantic-release-config-github": "^2.2.1",
"@codingame/tsconfig": "^1.2.1",
"@commitlint/cli": "^21.1.0",
"@rollup/plugin-commonjs": "^29.0.3",
"@rollup/plugin-dynamic-import-vars": "^2.1.5",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-replace": "^6.0.3",
"@rollup/plugin-typescript": "^12.3.0",
"@types/mime-types": "^3.0.1",
"@types/node": "^25.9.3",
"@types/postcss-url": "^10.0.4",
"@types/vscode-semver": "npm:@types/semver@=5.5.0",
"@types/yargs": "^17.0.35",
"@types/yauzl": "^3.4.0",
"@vscode/codicons": "^0.0.46-15",
"@vscode/tree-sitter-wasm": "^0.3.1",
"acorn": "^8.17.0",
"chalk": "^5.6.2",
"change-case": "^5.4.4",
"change-package-name": "^1.0.5",
"estree-walker": "^3.0.3",
"fast-glob": "^3.3.3",
"graceful-fs": "^4.2.11",
"js-cleanup": "^1.2.0",
"oxlint": "^1.71.0",
"package-json": "^10.0.1",
"patch-package": "^8.0.1",
"postcss-url": "^10.1.4",
"prettier": "^3.9.3",
"recast": "^0.23.12",
"rollup": "^4.62.2",
"rollup-plugin-copy": "^3.5.0",
"rollup-plugin-dts": "^6.4.1",
"semantic-release": "25.0.5",
"ts-morph": "^28.0.0",
"tsx": "^4.22.4",
"type-fest": "^5.7.0",
"typescript": "^6.0.3",
"vscode-oniguruma": "1.7.0",
"vscode-semver": "npm:semver@=5.5.0",
"vscode-textmate": "^9.3.2",
"yargs": "^18.0.0",
"zx": "^8.8.5"
},
"dependencies": {
"@microsoft/1ds-core-js": "^3.2.13",
"@microsoft/1ds-post-js": "^3.2.13",
"@rollup/pluginutils": "^5.4.0",
"@vscode/diff": "0.0.2-7",
"@vscode/iconv-lite-umd": "0.7.1",
"@vscode/proxy-agent": "^0.42.0",
"@vscode/ripgrep": "^1.18.0",
"@vscode/spdlog": "^0.15.8",
"@vscode/vscode-languagedetection": "npm:@codingame/vscode-languagedetection@1.0.23",
"@vscode/windows-process-tree": "^0.7.0",
"@xterm/addon-clipboard": "^0.3.0-beta.220",
"@xterm/addon-image": "^0.10.0-beta.220",
"@xterm/addon-ligatures": "^0.11.0-beta.220",
"@xterm/addon-progress": "^0.3.0-beta.220",
"@xterm/addon-search": "^0.17.0-beta.220",
"@xterm/addon-serialize": "^0.15.0-beta.220",
"@xterm/addon-unicode11": "^0.10.0-beta.220",
"@xterm/addon-webgl": "^0.20.0-beta.219",
"@xterm/headless": "^6.1.0-beta.220",
"@xterm/xterm": "^6.1.0-beta.220",
"cookie": "^0.7.2",
"css-url-parser": "^1.1.4",
"dompurify": "^3.4.11",
"jschardet": "3.1.4",
"jsonc-parser": "^3.0.0",
"katex": "^0.16.22",
"kerberos": "2.1.1",
"keytar": "^7.9.0",
"marked": "~14.0.0",
"memfs": "^4.57.8",
"mime-types": "^3.0.2",
"node-pty": "^1.2.0-beta.13",
"tas-client": "0.3.1",
"thenby": "^1.4.1",
"vscode-css-languageservice": "6.2.14",
"vscode-html-languageservice": "5.2.0",
"vscode-json-languageservice": "5.3.11",
"vscode-regexpp": "^3.1.0",
"vscode-uri": "3.0.8",
"yauzl": "^3.3.1",
"yazl": "^2.4.3"
},
"volta": {
"node": "26.3.0",
"npm": "11.16.0"
}
}