feat:移除了弹窗,服务器添加sls

This commit is contained in:
2026-09-08 22:39:45 +08:00
commit 6a295f9a7a
4082 changed files with 1322534 additions and 0 deletions

View File

@ -0,0 +1,24 @@
{
"name": "@modrinth/server",
"version": "0.0.0",
"description": "Minecraft dedicated server management core: config file schemas, manifest types, and download resolution shared by the Axolotl app and CLI.",
"license": "LGPL-3.0-only",
"type": "module",
"main": "./index.ts",
"types": "./index.ts",
"exports": {
".": {
"types": "./index.ts",
"default": "./index.ts"
}
},
"scripts": {
"lint": "eslint . && prettier --check .",
"fix": "eslint . --fix && prettier --write .",
"test": "node --test \"src/**/*.test.ts\"",
"prepr": "pnpm run fix"
},
"devDependencies": {
"@modrinth/tooling-config": "workspace:*"
}
}