-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.42 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.42 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
{
"name": "@daanv2/minecraft-types",
"version": "0.0.1",
"description": "This is a collection of types for Minecraft data structures in typescript. Based on the metadata in the [bedrock-samples](https://github.com/Mojang/bedrock-samples/tree/main)",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"files": [
"dist/src/**/*.js",
"dist/src/**/*.js.map",
"dist/src/**/*.d.ts",
"!dist/src/**/*.tests.js",
"!dist/src/**/*.tests.js.map",
"!dist/src/**/*.tests.d.ts"
],
"scripts": {
"compile": "tsc -b",
"generate": "ts-node ./gen/generate.ts",
"postgenerate": "npm run compile && npm run format",
"version": "git add -A src",
"postversion": "git push && git push --tags",
"watch": "tsc -w -p ./src",
"test": "node --test --test-reporter=spec",
"watch-test": "node --test --watch --test-reporter=spec",
"format": "npx prettier ./src/**/*.ts --write",
"check-format": "npx prettier ./src/**/*.ts --check"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DaanV2/minecraft-types.git"
},
"author": "DaanV2",
"license": "MIT",
"bugs": {
"url": "https://github.com/DaanV2/minecraft-types/issues"
},
"homepage": "https://github.com/DaanV2/minecraft-types#readme",
"devDependencies": {
"@types/node": "^20.10.5",
"prettier": "3.3.3",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"publishConfig": {}
}