-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.44 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.44 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
{
"name": "@codingame/monaco-languageclient-react",
"version": "0.0.0-semantic-release",
"description": "Monaco Editor React component",
"type": "module",
"release": {
"extends": "@codingame/semantic-release-config-github"
},
"scripts": {
"build": "npm run lint && npm run compile",
"compile": "tsc -p ./tsconfig.build.json",
"lint": "eslint 'src/**/*.ts' && prettier --check '**/*.{js,ts}'"
},
"repository": {
"type": "git",
"url": "https://github.com/CodinGame/monaco-languageclient-react"
},
"moduleResolution": "node",
"main": "dist/index.js",
"module": "dist/index.js",
"files": [
"dist/"
],
"types": "dist/index.d.ts",
"dependencies": {
"@codingame/monaco-languageclient-wrapper": "^23.0.0",
"@rehooks/local-storage": "^2.4.5",
"react": ">=16.0.0",
"uuid": "^13.0.0"
},
"devDependencies": {
"@codingame/commitlint-config-codingame": "^1.2.1",
"@codingame/semantic-release-config-github": "^2.2.1",
"@codingame/tsconfig": "^1.2.1",
"@commitlint/cli": "^20.4.1",
"@types/deep-equal": "^1.0.4",
"@types/react": "19.2.8",
"@types/uuid": "^11.0.0",
"conventional-changelog-conventionalcommits": "^9.1.0",
"eslint": "9.39.2",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"typescript": "5.9.3",
"typescript-eslint": "^8.55.0",
"prettier": "^3.8.1"
},
"volta": {
"node": "25.2.0",
"npm": "11.6.2"
}
}