-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.43 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
56
57
58
{
"name": "@sfirew/minecraft-motd-parser",
"description": "Minecraft Server MOTD Parser, can convert to html, json, text.",
"version": "1.1.3",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "types/index.d.ts",
"license": "MIT",
"scripts": {
"test": "jest",
"test-self": "ts-node ./src/test.ts",
"build": "yarn build:dist && yarn build:declarations",
"build:dist": "tsup --format cjs,esm",
"build:declarations": "tsc --emitDeclarationOnly --declaration --outDir types",
"format": "prettier --write \"**/*.+(ts)\""
},
"tsup": {
"entry": [
"src/index.ts"
],
"splitting": false,
"sourcemap": true,
"clean": true,
"minify": true
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/node": "^20.14.10",
"@typescript-eslint/eslint-plugin": "^5.41.0",
"@typescript-eslint/parser": "^5.41.0",
"eslint": "^8.26.0",
"jest": "^29.7.0",
"prettier": "^2.7.1",
"ts-jest": "^29.2.2",
"ts-node": "^10.9.2",
"tsup": "^8.1.0",
"typescript": "^5.5.3"
},
"repository": "https://github.com/SnowFireWolf/minecraft-motd-parser.git",
"author": "SnowFireWolf",
"keywords": [
"minecraft",
"java",
"bedrock",
"server",
"motd",
"color",
"hex",
"parser",
"html",
"formatting",
"javascript",
"typescript"
],
"publishConfig": {
"@snowfirewolf:registry": "https://npm.pkg.github.com"
}
}