-
Notifications
You must be signed in to change notification settings - Fork 55
/
package.json
45 lines (45 loc) · 1.26 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
{
"name": "minecraft-data",
"version": "3.78.0",
"description": "Provide easy access to minecraft data in node.js",
"main": "index.js",
"tonicExampleFilename": "example.js",
"scripts": {
"generate:types": "node typings/generate-typings.js",
"generate:data": "node ./bin/generate_data.js",
"test:types": "tsc typings/test-typings && node typings/test-typings.js",
"test": "npm run generate:types && npm run generate:data && npm run lint && npm run test:types && mocha",
"lint": "standard",
"prepare": "npm run generate:data && npm run generate:types",
"fix": "standard --fix"
},
"standard": {
"ignore": [
"minecraft-data/**/*.js"
]
},
"repository": {
"type": "git",
"url": "git@github.com:PrismarineJS/node-minecraft-data.git"
},
"keywords": [
"minecraft",
"data",
"node.js"
],
"author": "Romain Beaumont <romain.rom1@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/PrismarineJS/node-minecraft-data/issues"
},
"devDependencies": {
"minecraft-data": ".",
"@types/node": "^22.1.0",
"json-schema-to-typescript": "11.0.5",
"minecraft-packets": "^1.4.0",
"mocha": "^10.0.0",
"standard": "^17.0.0",
"typescript": "~5.6.3"
},
"dependencies": {}
}