Files
Wireguard-tools.js/package.json
T
2022-08-01 20:04:56 +00:00

45 lines
1.2 KiB
JSON

{
"name": "wireguard-tools.js",
"version": "0.1.0",
"description": "A simple way to manage Wireguard in Node.js",
"main": "dist/index.js",
"types": "./dist/index.d.ts",
"gypfile": true,
"repository": {
"type": "git",
"url": "git+https://github.com/Sirherobrine23/Wireguard-tools.js.git"
},
"keywords": [
"wireguard"
],
"author": "Matheus Sampaio Queiroga <srherobrine20@gmail.com> (https://sirherobrine23.org/)",
"license": "GPL-2.0-only",
"bugs": {
"url": "https://github.com/Sirherobrine23/Wireguard-tools.js/issues"
},
"homepage": "https://github.com/Sirherobrine23/Wireguard-tools.js#readme",
"os": [
"linux",
"android"
],
"engines": {
"node": ">=14.0.0"
},
"scripts": {
"nodegyp": "node install.js --install",
"install": "node install.js --install --silent || exit 0",
"build": "tsc && npm run install",
"test": "npm run build && sudo ts-node ./customTest.ts"
},
"devDependencies": {
"@types/node": "^18.6.2",
"node-gyp": "^9.1.0",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
},
"dependencies": {
"node-addon-api": "^5.0.0",
"node-gyp-build": "^4.5.0"
}
}