-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage-lib.json
More file actions
51 lines (51 loc) · 1.24 KB
/
Copy pathpackage-lib.json
File metadata and controls
51 lines (51 loc) · 1.24 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
{
"name": "terraria-companion-data",
"version": "0.1.0",
"description": "Terraria game data library - items, bosses, NPCs, biomes, and recipes for use in other applications",
"type": "module",
"main": "./dist/lib-index.js",
"types": "./dist/lib-index.d.ts",
"exports": {
".": {
"import": "./dist/lib-index.js",
"types": "./dist/lib-index.d.ts"
},
"./data": {
"import": "./dist/data/index.js",
"types": "./dist/data/index.d.ts"
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build:lib": "tsc -b --declaration --declarationMap --emitDeclarationOnly",
"lib:prepublishonly": "npm run build:lib"
},
"keywords": [
"terraria",
"game-data",
"items",
"bosses",
"npcs",
"biomes",
"recipes",
"reference"
],
"author": "NobleStripes",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/NobleStripes/Terraria-Companion.git",
"directory": "."
},
"bugs": {
"url": "https://github.com/NobleStripes/Terraria-Companion/issues"
},
"homepage": "https://github.com/NobleStripes/Terraria-Companion#readme",
"engines": {
"node": ">=18.0.0"
}
}