-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.27 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
{
"name": "rawjsonbuilder",
"version": "2.1.1",
"description": "Minecraft Raw JSON text builder",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"build": "tsc",
"pretest": "npm run-script build",
"test": "mocha --reporter spec",
"docs": "typedoc --out docs src/index.ts --theme minimal",
"eslint:check": "eslint ./src/**/*",
"eslint:fix": "eslint ./src/**/* --fix"
},
"exports": {
".": [
{
"require": "./lib/index.js",
"import": "./esm/index.mjs"
},
"./lib/index.js"
],
"./esm": "./esm/index.mjs"
},
"keywords": [
"minecraft",
"json",
"raw"
],
"author": "MrZillaGold <Pronin Egor | mrzillagold@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/MrZillaGold/RawJSONBuilder.git"
},
"bugs": {
"url": "https://github.com/MrZillaGold/RawJSONBuilder/issues"
},
"dependencies": {
"inspectable": "^1.1.1",
"minecraft-protocol-chat-parser": "^3.0.2"
},
"devDependencies": {
"@types/node": "^17.0.7",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"eslint": "^8.0.0",
"mocha": "^9.0.0",
"typedoc": "^0.22.3",
"typescript": "^4.1.5"
}
}