-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 1.35 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
{
"name": "@mcdata/data",
"version": "1.0.5",
"description": "Minecraft data used in the API/Discord client.",
"keywords": [
"mcdata",
"data",
"minecraft"
],
"repository": {
"type": "git",
"url": "https://github.com/mcdata-dev/mcdata-data.git"
},
"license": "GPL-3.0-only",
"author": {
"name": "McData Development",
"url": "https://github.com/mcdata-dev"
},
"exports": {
".": {
"types": "./src/index.d.ts",
"require": "./src/index.js",
"import": "./src/index.mjs"
}
},
"main": "src/index.ts",
"files": [
"src/**/*.{js,js.map,d.ts,d.ts.map,mjs}"
],
"scripts": {
"build:ci": "tsc --noEmit --incremental false",
"build:node": "tsc && run-p esm",
"clean": "run-p clean:*",
"clean:node": "rimraf --glob \"src/**/*.{js,mjs,d.ts,*map}\"",
"esm": "gen-esm-wrapper ./src/index.js ./src/index.mjs",
"format": "prettier --write .",
"prepublishOnly": "run-s clean build:node",
"postpublish": "run-s clean:node",
"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"
}
}