mirror of
https://github.com/remnawave/backend.git
synced 2026-08-04 14:48:33 +00:00
36 lines
1,022 B
JSON
36 lines
1,022 B
JSON
{
|
|
"name": "@remnawave/backend-contract",
|
|
"version": "3.2.0",
|
|
"description": "A contract library for Remnawave Backend. It can be used in backend and frontend.",
|
|
"keywords": [],
|
|
"homepage": "https://github.com/remnawave",
|
|
"bugs": {
|
|
"url": "https://github.com/remnawave/backend/issues"
|
|
},
|
|
"license": "AGPL-3.0-only",
|
|
"author": "REMNAWAVE <github.com/remnawave>",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/remnawave/backend.git"
|
|
},
|
|
"files": [
|
|
"build/**/*"
|
|
],
|
|
"main": "build/backend/index.js",
|
|
"browser": "build/frontend/index.js",
|
|
"types": "build/backend/index.d.ts",
|
|
"scripts": {
|
|
"clean": "rm -rf build",
|
|
"build:backend": "tsc -p tsconfig.backend.json",
|
|
"build:frontend": "tsc -p tsconfig.frontend.json",
|
|
"build": "npm run clean && npm run build:backend && npm run build:frontend",
|
|
"prepublish": "npm run build"
|
|
},
|
|
"dependencies": {
|
|
"zod": "4.4.3"
|
|
},
|
|
"devDependencies": {
|
|
"typescript": "5.9.3"
|
|
},
|
|
"public": true
|
|
}
|