-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.38 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
48
49
50
{
"name": "siriusu",
"description": "sirius plugin base on levilamina",
"version": "1.0.1",
"license": "GPL-3.0",
"author": "Arimura <[email protected]>",
"scripts": {
"build": "tsup",
"dev": "nodemon --watch",
"release": "tsup --define.release true && conventional-changelog -p angular -i CHANGELOG.md -s -r 0"
},
"files": ["dist", "schema", "static", "README.md", "LICENSE"],
"homepage": "https://github.com/biyuehu/sirius#readme",
"bugs": {
"url": "https://github.com/biyuehu/sirius/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/biyuehu/sirius.git"
},
"keywords": ["sirius", "plugin", "levilamina", "minecraft", "bedrock", "minecraft-bedrock", "bds", "server"],
"devDependencies": {
"@biomejs/biome": "^1.8.3",
"@types/node": "^20.14.1",
"@types/shelljs": "^0.8.15",
"conventional-changelog-cli": "^4.1.0",
"dotenv": "^16.4.5",
"levilamina": "^2.14.1",
"nodemon": "^3.1.3",
"shelljs": "^0.8.5",
"tsup": "^8.1.0",
"tsx": "^4.16.2"
},
"engines": {
"node": ">=17.0.0"
},
"nodemonConfig": {
"exec": "pnpm build && tsx scripts/bds.ts",
"ext": "ts",
"ignore": ["tsup.config.ts", "scripts", "server", "tests", "*.test.ts"]
},
"levilamina": {
"type": "lse-quickjs",
"dependencies": [
{
"name": "legacy-script-engine-quickjs"
}
]
}
}