|
| 1 | +{ |
| 2 | + "name": "node-netkit", |
| 3 | + "description": "Awesome utilities for working with network on Linux", |
| 4 | + "version": "0.1.0-canary.0", |
| 5 | + "scripts": { |
| 6 | + "dev": "tsup --watch", |
| 7 | + "build": "tsup", |
| 8 | + "typecheck": "tsc --noEmit", |
| 9 | + "format:check": "prettier --check \"**/*.{ts,md}\"", |
| 10 | + "format": "prettier --write .", |
| 11 | + "prepublishOnly": "pnpm run format:check && pnpm run typecheck && pnpm run build" |
| 12 | + }, |
| 13 | + "type": "module", |
| 14 | + "packageManager": "pnpm@8.12.0", |
| 15 | + "dependencies": { |
| 16 | + "execa": "^8.0.1" |
| 17 | + }, |
| 18 | + "devDependencies": { |
| 19 | + "@types/chai": "^4.3.11", |
| 20 | + "@types/mocha": "^10.0.6", |
| 21 | + "@types/node": "^20.10.5", |
| 22 | + "@types/prompts": "^2.4.9", |
| 23 | + "chai": "^4.3.10", |
| 24 | + "mocha": "^10.2.0", |
| 25 | + "prettier": "^3.1.0", |
| 26 | + "tsup": "^8.0.1", |
| 27 | + "tsx": "^4.7.0", |
| 28 | + "type-fest": "^4.8.2", |
| 29 | + "typescript": "^5.3.2" |
| 30 | + }, |
| 31 | + "main": "dist/index.js", |
| 32 | + "module": "dist/index.mjs", |
| 33 | + "types": "dist/index.d.ts", |
| 34 | + "files": [ |
| 35 | + "dist/**" |
| 36 | + ], |
| 37 | + "exports": { |
| 38 | + ".": { |
| 39 | + "import": { |
| 40 | + "types": "./dist/index.d.mts", |
| 41 | + "default": "./dist/index.mjs" |
| 42 | + }, |
| 43 | + "require": { |
| 44 | + "types": "./dist/index.d.ts", |
| 45 | + "default": "./dist/index.js" |
| 46 | + } |
| 47 | + }, |
| 48 | + "./ip": { |
| 49 | + "import": { |
| 50 | + "types": "./dist/ip.d.mts", |
| 51 | + "default": "./dist/ip.mjs" |
| 52 | + }, |
| 53 | + "require": { |
| 54 | + "types": "./dist/ip.d.ts", |
| 55 | + "default": "./dist/ip.js" |
| 56 | + } |
| 57 | + } |
| 58 | + }, |
| 59 | + "author": "Shahrad Elahi <shahrad@litehex.com> (https://github.com/shahradelahi)", |
| 60 | + "repository": { |
| 61 | + "type": "git", |
| 62 | + "url": "https://github.com/shahradelahi/node-netkit.git" |
| 63 | + }, |
| 64 | + "license": "GPL-3.0", |
| 65 | + "keywords": [ |
| 66 | + "network", |
| 67 | + "ip", |
| 68 | + "tun", |
| 69 | + "route", |
| 70 | + "linux", |
| 71 | + "toolkit", |
| 72 | + "node" |
| 73 | + ], |
| 74 | + "publishConfig": { |
| 75 | + "access": "public" |
| 76 | + } |
| 77 | +} |
0 commit comments