-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
47 lines (47 loc) · 1.46 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
46
47
{
"name": "@enginehub/schematicjs",
"version": "0.9.2",
"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": "tsc && tsc --module commonjs --outDir dist/cjs",
"test": "jest",
"lint": "eslint --config ./.eslintrc.js --ext .js,.ts 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": {
"@types/gzip-js": "^0.3.3",
"@types/jest": "^29.5.0",
"@types/node": "^18.15.11",
"@typescript-eslint/eslint-plugin": "^5.57.0",
"@typescript-eslint/parser": "^5.57.0",
"eslint": "^8.37.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"gzip-js": "^0.3.2",
"jest": "^29.5.0",
"prettier": "^2.8.7",
"prettier-eslint": "^15.0.1",
"ts-jest": "^29.0.5",
"typescript": "^5.0.3"
},
"sideEffects": false
}