node-firewalla
Version:
Package to talk your firewalla box & API
54 lines (53 loc) • 1.28 kB
JSON
{
"name": "node-firewalla",
"version": "1.3.1",
"author": "Lesley De Keyser",
"license": "ISC",
"type": "module",
"description": "",
"scripts": {
"compile": "tsc",
"start": "npm run compile && node dist/index.js",
"clean": "shx rm -rf ./lib",
"build": "npm run clean && npm run build:esm && npm run build:cjs",
"build:esm": "tsc -p ./configs/tsconfig.esm.json && shx mv lib/esm/index.js lib/esm/index.mjs",
"build:cjs": "tsc -p ./configs/tsconfig.cjs.json",
"prepack": "npm run build"
},
"types": "./lib/cjs/types/index.d.ts",
"main": "./lib/cjs/index.js",
"files": [
"lib/**/*"
],
"repository": {
"type": "git",
"url": "https://github.com/lesleyxyz/node-firewalla.git"
},
"keywords": [
"firewalla",
"API",
"nodejs"
],
"dependencies": {
"@types/node": "^17.0.23",
"dotenv": "^16.0.3",
"node-fetch": "^3.2.3",
"typescript": "^4.9.3"
},
"devDependencies": {
"shx": "^0.3.4",
"ts-node": "^10.9.1"
},
"exports": {
".": {
"import": {
"types": "./lib/esm/types/index.d.ts",
"default": "./lib/esm/index.mjs"
},
"require": {
"types": "./lib/cjs/types/index.d.ts",
"default": "./lib/cjs/index.js"
}
}
}
}