-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.31 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.31 KB
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": "mudlet-map-binary-reader",
"version": "1.1.0",
"type": "module",
"keywords": [
"mudlet",
"map",
"mud"
],
"author": "Delwing",
"license": "MIT",
"repository": {
"url": "git+https://github.com/Delwing/node-mudlet-map-binary-reader.git"
},
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": [
"dist",
"mudlet-colors.json"
],
"scripts": {
"build": "tsdown",
"lint": "eslint .",
"test": "vitest run",
"typecheck": "tsc -p tsconfig.json --noEmit",
"prepublishOnly": "yarn build"
},
"dependencies": {
"qtdatastream-web": "^0.0.1"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^20.0.0",
"eslint": "^10.2.0",
"tsdown": "^0.22.2",
"typescript": "^5.0.0",
"typescript-eslint": "^8.58.2",
"vitest": "^4.1.9"
},
"description": "Reads and writes Mudlet's map binary file (v20), with read-only support for older formats (v16-v19). Can output .js files needed for Mudlet Map Reader.",
"bugs": {
"url": "https://github.com/Delwing/node-mudlet-map-binary-reader/issues"
},
"homepage": "https://github.com/Delwing/node-mudlet-map-binary-reader#readme"
}