mirror of
https://github.com/remnawave/backend.git
synced 2026-07-10 10:03:12 +00:00
36 lines
1,011 B
JSON
36 lines
1,011 B
JSON
{
|
|
"name": "@remnawave/hashed-set",
|
|
"version": "0.0.4",
|
|
"description": "A high-performance Set implementation with hash-based equality comparison for fast set operations.",
|
|
"keywords": [
|
|
"collection",
|
|
"data-structure",
|
|
"hash",
|
|
"performance",
|
|
"set"
|
|
],
|
|
"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": "https://github.com/remnawave/backend"
|
|
},
|
|
"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"
|
|
},
|
|
"public": true
|
|
}
|