-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 946 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 946 Bytes
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
{
"name": "knavalbattle.js",
"version": "1.0.6",
"description": "A Node.js library for KNavalBattle/KBattleship.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": ["dist"],
"keywords": [
"knavalbattle",
"kbattleship",
"kde"
],
"exports": {
".": "./dist/index.js",
"./client": "./dist/client.js",
"./message": "./dist/message.js"
},
"scripts": {
"build": "tsc"
},
"homepage": "https://github.com/DaInfLoop/knavalbattle.js#readme",
"bugs": {
"url": "https://github.com/DaInfLoop/knavalbattle.js/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DaInfLoop/knavalbattle.js.git"
},
"license": "MIT",
"author": "DaInfLoop <mail@dainfloop.is-a.dev>",
"type": "module",
"dependencies": {
"fast-xml-parser": "^5.2.5"
},
"devDependencies": {
"@types/node": "^24.3.0"
},
"peerDependencies": {
"typescript": "^5"
}
}