Files
smartvpn/package.json
2026-02-27 10:19:13 +00:00

53 lines
1.1 KiB
JSON

{
"name": "@push.rocks/smartvpn",
"version": "1.0.1",
"private": false,
"description": "A VPN solution with TypeScript control plane and Rust data plane daemon",
"type": "module",
"exports": {
".": "./dist_ts/index.js"
},
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
"scripts": {
"build": "(tsbuild tsfolders --allowimplicitany) && (tsrust)",
"test": "tstest test/ --verbose",
"buildDocs": "tsdoc"
},
"repository": {
"type": "git",
"url": "https://code.foss.global/push.rocks/smartvpn.git"
},
"keywords": [
"vpn",
"wireguard",
"typescript",
"rust",
"tunnel",
"networking"
],
"license": "MIT",
"dependencies": {
"@push.rocks/smartrust": "^1.3.0",
"@push.rocks/smartpath": "^5.0.18"
},
"devDependencies": {
"@git.zone/tsbuild": "^2.2.12",
"@git.zone/tsrun": "^1.3.3",
"@git.zone/tstest": "^1.0.96",
"@git.zone/tsrust": "^1.0.29",
"@types/node": "^22.0.0"
},
"files": [
"ts/**/*",
"dist_ts/**/*",
"dist_rust/**/*",
"assets/**/*",
"readme.md",
"license.md"
],
"browserslist": [
"last 1 chrome versions"
]
}