-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
126 lines (126 loc) · 4.17 KB
/
package.json
File metadata and controls
126 lines (126 loc) · 4.17 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
{
"name": "@codingame/monaco-languageclient-wrapper",
"version": "0.0.0-semantic-release",
"private": false,
"description": "Enhanced Monaco editor with TextMate grammars and more",
"type": "module",
"release": {
"extends": "@codingame/semantic-release-config-github"
},
"scripts": {
"test": "jest --runInBand",
"test:watch": "jest --watch",
"build": "npm run lint && npm run compile && npm run generate-types && npm run test",
"compile": "node --experimental-json-modules ./node_modules/.bin/rollup --config rollup.config.ts --configPlugin typescript --configImportAttributesKey with",
"lint": "eslint '{src/**/*.ts,scripts/*.ts,rollup.config.ts}' && prettier --check '**/*.{js,ts}'",
"generate-types": "tsc --project tsconfig.types.json && node --experimental-json-modules ./node_modules/.bin/rollup --config rollup.types.config.ts --configPlugin typescript --configImportAttributesKey with && rm -rf ./dist/types",
"preprepare": "./scripts/install-extensions"
},
"repository": {
"type": "git",
"url": "https://github.com/CodinGame/monaco-languageclient-wrapper"
},
"main": "./dist/index.js",
"module": "./dist/index.js",
"files": [
"dist/",
"stats.html"
],
"types": "./dist/index.d.ts",
"dependencies": {
"@codingame/monaco-editor-wrapper": "^26.0.0",
"@codingame/monaco-vscode-api": "^28.0.0",
"@codingame/monaco-vscode-files-service-override": "^28.0.0",
"delay": "^7.0.0",
"jsdom": "^28.1.0",
"monaco-editor": "npm:@codingame/monaco-vscode-editor-api@^28.0.0",
"once": "^1.4.0",
"vscode": "npm:@codingame/monaco-vscode-extension-api@^28.0.0",
"vscode-jsonrpc": "^8.2.1",
"vscode-languageclient": "~9.0.1",
"vscode-languageserver-protocol": "^3.17.5",
"vscode-ws-jsonrpc": "^3.5.0"
},
"devDependencies": {
"@babel/core": "7.29.0",
"@babel/plugin-proposal-class-properties": "7.18.6",
"@babel/plugin-proposal-optional-chaining": "7.21.0",
"@babel/plugin-transform-modules-commonjs": "^7.28.6",
"@babel/preset-env": "7.29.0",
"@babel/preset-typescript": "7.28.5",
"@babel/runtime": "7.28.6",
"@codingame/commitlint-config-codingame": "1.2.1",
"@codingame/semantic-release-config-github": "^2.2.1",
"@codingame/tsconfig": "^1.2.1",
"@commitlint/cli": "^20.4.3",
"@rollup/plugin-commonjs": "29.0.2",
"@rollup/plugin-json": "6.1.0",
"@rollup/plugin-node-resolve": "16.0.3",
"@rollup/plugin-typescript": "^12.3.0",
"@types/jest": "^30.0.0",
"@types/once": "^1.4.5",
"babel-plugin-transform-import-meta": "^2.3.3",
"browser-resolve": "^2.0.0",
"canvas": "^3.2.1",
"conventional-changelog-conventionalcommits": "^9.3.0",
"eslint": "9.39.2",
"fake-indexeddb": "^6.2.5",
"jest": "^30.3.0",
"jest-environment-jsdom": "^30.3.0",
"js-cleanup": "^1.2.0",
"prettier": "^3.8.1",
"recast": "^0.23.11",
"rollup": "4.59.0",
"rollup-plugin-dts": "^6.3.0",
"rollup-plugin-polyfill-node": "^0.13.0",
"rollup-plugin-postcss": "4.0.2",
"rollup-plugin-visualizer": "7.0.1",
"tslib": "^2.8.1",
"typescript": "5.9.3",
"typescript-eslint": "^8.57.0",
"vscode-languageserver": "~9.0.1",
"whatwg-fetch": "^3.6.20"
},
"browserslist": [
"defaults",
"chrome >= 59",
"firefox >= 68",
"safari >= 12",
"not IE 11",
"not IE_Mob 11"
],
"jest": {
"resolver": "<rootDir>/jest/resolver.cjs",
"testEnvironment": "./FixJSDOMEnvironment.js",
"modulePathIgnorePatterns": [
"<rootDir>/dist/"
],
"setupFilesAfterEnv": [
"fake-indexeddb/auto",
"<rootDir>/browserMock.js"
],
"transformIgnorePatterns": [
"^.+\\.module\\.(css|sass|scss)$"
],
"transform": {
"^(?!.*\\.(js|ts|css|json)$)": "<rootDir>/jest/fileTransform.cjs",
"^.+\\.css$": "<rootDir>/jest/cssTransform.cjs",
"^.+\\.(js|ts)$": [
"<rootDir>/node_modules/babel-jest",
{
"configFile": "./babel.test.config.cjs"
}
]
}
},
"overrides": {
"jsdom": "$jsdom",
"globals": "15.14.0",
"monaco-editor": "$monaco-editor",
"canvas": "$canvas"
},
"volta": {
"node": "25.2.0",
"npm": "11.6.2"
}
}