@mcdata/data
Version:
Minecraft data used in the API/Discord client.
57 lines (56 loc) • 1.47 kB
JSON
{
"name": "@mcdata/data",
"version": "1.0.5",
"description": "Minecraft data used in the API/Discord client.",
"main": "src/index.ts",
"exports": {
".": {
"types": "./src/index.d.ts",
"require": "./src/index.js",
"import": "./src/index.mjs"
}
},
"repository": {
"type": "git",
"url": "https://github.com/mcdata-dev/mcdata-data.git"
},
"author": {
"name": "McData Development",
"url": "https://github.com/mcdata-dev"
},
"license": "GPL-3.0-only",
"keywords": [
"mcdata",
"data",
"minecraft"
],
"files": [
"src/**/*.{js,js.map,d.ts,d.ts.map,mjs}",
"src/data/**/*.json"
],
"scripts": {
"build:ci": "tsc --noEmit --incremental false",
"build:node": "tsc && run-p esm",
"clean:node": "rimraf --glob \"src/**/*.{js,mjs,d.ts,*map}\"",
"clean": "run-p clean:*",
"esm": "gen-esm-wrapper ./src/index.js ./src/index.mjs",
"postpublish": "run-s clean:node",
"prepublishOnly": "run-s clean build:node",
"format": "prettier --write .",
"test": "vitest run --coverage"
},
"devDependencies": {
"@vitest/coverage-v8": "^1.5.0",
"gen-esm-wrapper": "^1.1.3",
"globals": "^15.0.0",
"npm-run-all2": "^6.1.2",
"prettier": "^3.2.5",
"rimraf": "^5.0.5",
"tslib": "^2.6.2",
"typescript": "*",
"vitest": "^1.5.0"
},
"publishConfig": {
"access": "public"
}
}