forked from janispritzkau/nbt-ts
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.01 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
{
"name": "@enginehub/nbt-ts",
"version": "1.3.5",
"description": "An easy to use encoder and decoder for the NBT format",
"main": "lib/cjs/index.js",
"module": "lib/esm/index.js",
"types": "lib/esm/index.d.ts",
"exports": {
".": {
"import": {
"types": "./lib/esm/index.d.ts",
"default": "./lib/esm/index.js"
},
"require": {
"types": "./lib/cjs/index.d.ts",
"default": "./lib/cjs/index.js"
}
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/EngineHub/nbt-ts.git"
},
"scripts": {
"test": "node test",
"build": "tsc && tsc --module esnext --outDir lib/esm",
"prepare": "npm run build && npm run test"
},
"keywords": [
"nbt",
"minecraft",
"typescript",
"snbt"
],
"author": "Janis Pritzkau <[email protected]>",
"contributors": [
"EngineHub"
],
"license": "MIT",
"devDependencies": {
"@types/node": "^16.4.8",
"typescript": "^4.7.4"
},
"sideEffects": false
}