-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
43 lines (43 loc) · 1.33 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
{
"name": "@enginehub/schematicjs",
"version": "0.10.0",
"description": "A TypeScript/JavaScript library for loading and saving WorldEdit schematics",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/esm/index.d.ts",
"files": [
"dist/"
],
"scripts": {
"prepublish": "rm -rf dist && yarn build",
"build": "yarn tsc --project tsconfig.build.json && yarn tsc --project tsconfig.build.json --module commonjs --outDir dist/cjs",
"test": "yarn vitest --run",
"lint": "yarn eslint src/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/EngineHub/SchematicJS.git"
},
"author": "EngineHub",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/EngineHub/SchematicJS/issues"
},
"homepage": "https://github.com/EngineHub/SchematicJS#readme",
"dependencies": {
"@enginehub/nbt-ts": "^1.3.5"
},
"devDependencies": {
"@eslint/js": "^9.19.0",
"@types/gzip-js": "^0.3.5",
"@types/node": "^22.13.1",
"eslint": "^9.19.0",
"gzip-js": "^0.3.2",
"prettier": "^3.4.2",
"typescript": "^5.7.3",
"typescript-eslint": "^8.23.0",
"vitest": "^3.0.5"
},
"sideEffects": false,
"packageManager": "[email protected]"
}