-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathpackage.json
57 lines (57 loc) · 1.58 KB
/
package.json
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
{
"name": "minecraft-bedrock-schemas",
"version": "1.20.81-1",
"description": "The unit test for minecraft-bedrock-schemas",
"main": "./lib/src/main.js",
"types": "./lib/src/main.d.ts",
"directories": {
"test": "test"
},
"scripts": {
"build": "npm run clean && npm run compile",
"clean": "rimraf lib",
"compile": "tsc -b",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"lint": "eslint",
"postversion": "git push && git push --tags",
"prepublishOnly": "npm test",
"pretest": "npm run compile",
"preversion": "",
"test": "jest",
"version": "git add -A src",
"watch": "tsc -w -p ./src"
},
"repository": {
"compile": "tsc -b",
"type": "git",
"url": "git+https://github.com/Blockception/Minecraft-bedrock-json-schemas.git"
},
"keywords": [
"unittest"
],
"author": "Blockception ltd",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/Blockception/Minecraft-bedrock-json-schemas/issues"
},
"homepage": "https://github.com/Blockception/Minecraft-bedrock-json-schemas#readme",
"devDependencies": {
"@eslint/js": "^9.14.0",
"@types/eslint__js": "^8.42.3",
"@types/jest": "^29.5.14",
"@types/node": "^20.10.1",
"comment-json": "^4.2.3",
"eslint": "^9.14.0",
"eslint-plugin-jest": "^28.9.0",
"ts-jest": "^29.2.5",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.1",
"typescript": "^5.3.2",
"typescript-eslint": "^8.13.0",
"vscode": "^1.1.37"
},
"dependencies": {
"fast-glob": "^3.3.2",
"vscode-json-languageservice": "^5.3.7"
}
}