-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 732 Bytes
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 732 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
{
"name": "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",
"repository": {
"type": "git",
"url": "git+https://github.com/janispritzkau/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 <janispritzkau@gmail.com>",
"license": "MIT",
"devDependencies": {
"@types/node": "^16.4.8",
"typescript": "^4.7.4"
},
"sideEffects": false
}