-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 1.45 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
{
"name": "bc-minecraft-project",
"version": "1.21.44-3",
"description": "A library that provides object and handling for minecraft projects",
"main": "./lib/src/main.js",
"types": "./lib/src/main.d.ts",
"scripts": {
"compile": "tsc -b",
"build": "npm run clean && npm run compile",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"test": "jest",
"lint": "eslint",
"clean": "rimraf lib",
"pretest": "npm run compile",
"prepublishOnly": "npm test",
"preversion": "",
"postversion": "git push && git push --tags",
"version": "git add -A src",
"watch": "tsc -w -p ./src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Blockception/BC-Minecraft-Project.git"
},
"keywords": [
"minecraft",
"bedrock",
"data",
"completion",
"diagnostics"
],
"author": "Blockception Ltd",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/Blockception/BC-Minecraft-Project/issues"
},
"homepage": "https://github.com/Blockception/BC-Minecraft-Project#readme",
"files": [
"lib/src/**/*"
],
"devDependencies": {
"@eslint/js": "^9.9.1",
"@types/eslint__js": "^8.42.3",
"@types/jest": "^29.5.12",
"@types/node": "^22.5.4",
"eslint": "^9.9.1",
"eslint-plugin-jest": "^28.8.3",
"rimraf": "^6.0.1",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.1",
"typescript": "^5.2.2",
"typescript-eslint": "^8.4.0"
}
}