forked from SnowFireWolf/minecraft-motd-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 835 Bytes
/
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
{
"name": "@silentbot1/mc-motd-parser",
"description": "Minecraft Server MOTD Parser, can convert to html, json, text.",
"version": "1.0.8",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"license": "MIT",
"devDependencies": {
"@types/node": "^16.6.0",
"ts-node": "^10.7.0",
"typescript": "^4.3.5"
},
"scripts": {
"test": "ts-node ./src/test.ts",
"build": "tsc --project ./ && tsc --project ./ --declaration",
"declaration": "tsc --project ./ --declaration"
},
"repository": "https://github.com/SilentBot1/minecraft-motd-parser.git",
"author": "SilentBot1",
"keywords": [
"motd",
"color",
"hex",
"parser",
"minecraft",
"html",
"formatting",
"typescript"
],
"publishConfig": {
"@SilentBot1:registry": "https://npm.pkg.github.com"
}
}