-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.23 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
{
"name": "legacy-script-engine-scaffold",
"version": "0.2.1",
"description": "A utility for assisting in the development of Legacy Script Engine plugins.",
"bugs": "https://github.com/leoweyr/LSEScaffold/issues",
"bin": {
"lses": "dist/cli/index.js"
},
"files": [
"dist"
],
"scripts": {
"clean": "tsc --build --clean",
"compile": "tsc",
"build": "npm run clean && npm run compile",
"local-deploy": "npm run build && npm link",
"package": "npm run build && npm pack",
"deploy": "npm run package && npm publish"
},
"keywords": [
"levilamina",
"minecraft",
"bedrock-dedicated-server",
"utility",
"scaffold",
"cli",
"npx"
],
"author": "leoweyr <[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/node": "^22.10.7",
"@types/archiver": "^6.0.3",
"@types/unzipper": "^0.10.10"
},
"dependencies": {
"typescript": "^5.7.3",
"archiver": "^7.0.1",
"commander": "^13.1.0",
"unzipper": "^0.12.3"
},
"repository": {
"type": "git",
"url": "https://github.com/leoweyr/LSEScaffold"
}
}