-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
39 lines (39 loc) · 990 Bytes
/
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
{
"name": "prismarine-item",
"version": "1.16.0",
"description": "Represent a minecraft item with its associated data",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"test": "mocha --reporter spec --exit",
"pretest": "npm run lint",
"fix": "standard --fix",
"lint": "standard"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PrismarineJS/prismarine-item.git"
},
"devDependencies": {
"@types/node": "^22.3.0",
"expect": "^29.1.2",
"mocha": "^11.0.1",
"prismarine-item": "file:.",
"standard": "^17.0.0"
},
"keywords": [
"minecraft",
"item",
"prismarine"
],
"author": "Romain Beaumont <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/PrismarineJS/prismarine-item/issues"
},
"homepage": "https://github.com/PrismarineJS/prismarine-item#readme",
"dependencies": {
"prismarine-nbt": "^2.0.0",
"prismarine-registry": "^1.4.0"
}
}