I am removing the Typescript transpilation part, the project will have full typescript support, Typescript support will not be removed.
59 lines
1.5 KiB
JSON
59 lines
1.5 KiB
JSON
{
|
|
"name": "wireguard-tools.js",
|
|
"version": "1.7.3",
|
|
"description": "Control your wireguard interface from node.js, not a wireguard-tools wrapper!",
|
|
"private": false,
|
|
"type": "commonjs",
|
|
"main": "./export/index.cjs",
|
|
"types": "./export/index.d.ts",
|
|
"default": "./export/index.mjs",
|
|
"exports": {
|
|
".": {
|
|
"require": "./export/index.cjs",
|
|
"default": "./export/index.mjs",
|
|
"types": "./export/index.d.ts"
|
|
}
|
|
},
|
|
"homepage": "https://github.com/Sirherobrine23/Wireguard-tools.js#readme",
|
|
"author": "Matheus Sampaio Queiroga <srherobrine20@gmail.com> (https://sirherobrine23.org/)",
|
|
"license": "GPL-3.0-or-later",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/Sirherobrine23/Wireguard-tools.js.git"
|
|
},
|
|
"keywords": [
|
|
"wireguard",
|
|
"node-addon",
|
|
"wireguard-tools",
|
|
"wireguard-basic-tools",
|
|
"wireguard-utils"
|
|
],
|
|
"bugs": {
|
|
"url": "https://github.com/Sirherobrine23/Wireguard-tools.js/issues"
|
|
},
|
|
"sponsor": {
|
|
"url": "https://github.com/sponsors/Sirherobrine23"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"engines": {
|
|
"node": ">=16.0.0"
|
|
},
|
|
"scripts": {
|
|
"install": "node libs/build.mjs",
|
|
"test": "mocha ./src",
|
|
"dev": "node libs/build.mjs build",
|
|
"prebuildify": "node libs/build.mjs build --auto"
|
|
},
|
|
"devDependencies": {
|
|
"@types/mocha": "^10.0.1",
|
|
"@types/node": "^20.6.0",
|
|
"mocha": "^10.2.0"
|
|
},
|
|
"dependencies": {
|
|
"node-addon-api": "^7.0.0",
|
|
"node-gyp": "^9.4.0"
|
|
}
|
|
}
|