-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.53 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.53 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
{
"name": "minecraft-bedrock-language-server",
"private": true,
"author": {
"name": "Blockception Ltd",
"url": "https://www.blockception.com/"
},
"license": "BSD-3-Clause",
"workspaces": [
"packages/shared",
"packages/project",
"packages/bedrock-vanilla-data",
"packages/bedrock-types",
"packages/bedrock-commands",
"packages/molang",
"packages/bedrock-project",
"packages/bedrock-diagnoser",
"ide/shared",
"ide/base/client",
"ide/base/server",
"ide/vscode",
"tools/generate-command-data"
],
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/eslint__js": "^9.14.0",
"@types/jest": "^30.0.0",
"@types/node": "^25.6.0",
"eslint": "^10.2.1",
"eslint-plugin-jest": "^29.15.2",
"jest": "^30.3.0",
"prettier": "^3.8.3",
"ts-jest": "^29.4.9",
"ts-node": "^10.9.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.58.2"
},
"scripts": {
"build": "npm run compile --workspaces",
"compile": "npm run compile --workspaces",
"format": "prettier --write \"**/*.{ts,js,json,md}\"",
"lint": "npm run lint --workspaces",
"test": "npm run test --workspaces",
"test:all": "npx jest --coverage",
"clean": "npm run clean --workspaces"
},
"dependencies": {
"rimraf": "^6.1.3"
},
"version": "0.0.1",
"overrides": {
"picomatch": "^4.0.4",
"fast-glob": {
"micromatch": {
"picomatch": "^2.3.2"
}
},
"ts-loader": {
"micromatch": {
"picomatch": "^2.3.2"
}
}
}
}