-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.02 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.02 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
{
"name": "@shapescape/storage",
"version": "1.0.9",
"license": "LGPL-3.0-or-later",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsup",
"tsbuild": "tsc",
"test": "jest --passWithNoTests",
"lint": "eslint src --ext .ts",
"docs": "typedoc",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ShapescapeMC/StorageAPI.git"
},
"files": [
"dist/*",
"src"
],
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"keywords": [],
"author": "Shapescape",
"description": "",
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.14.10",
"eslint": "^8.57.0",
"eslint-plugin-minecraft-linting": "^1.2.2",
"jest": "^29.7.0",
"ts-jest": "^29.2.2",
"ts-node": "^10.9.2",
"tsup": "^8.3.5",
"typedoc": "^0.26.4",
"typescript": "^5.5.3"
},
"dependencies": {
"@minecraft/server": "^1.11.0 || ^2.0.0"
}
}