-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.14 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.14 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "node-netkit",
"description": "Awesome utilities for working with network on Linux",
"version": "0.1.0-canary.3",
"scripts": {
"dev": "tsup --watch",
"build": "tsup",
"test": "mocha \"**/*.test.ts\" --retries 2",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"format:check": "prettier --check .",
"format": "prettier --write .",
"check": "pnpm lint && pnpm format:check",
"prepublishOnly": "pnpm test && pnpm check && pnpm build"
},
"type": "module",
"packageManager": "pnpm@8.15.0",
"dependencies": {
"execa": "^9.0.0",
"p-safe": "^0.1.0"
},
"devDependencies": {
"@types/chai": "^4.3.14",
"@types/mocha": "^10.0.6",
"@types/node": "^20.12.7",
"@typescript-eslint/eslint-plugin": "^7.7.0",
"chai": "^5.1.0",
"eslint": "^8.57.0",
"mocha": "^10.4.0",
"prettier": "^3.2.5",
"tsup": "^8.0.2",
"tsx": "^4.7.2",
"typescript": "^5.4.5"
},
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.cts",
"files": [
"dist/**"
],
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
},
"./ip": {
"import": {
"types": "./dist/ip/index.d.ts",
"default": "./dist/ip/index.js"
},
"require": {
"types": "./dist/ip/index.d.cts",
"default": "./dist/ip/index.cjs"
}
},
"./netstat": {
"import": {
"types": "./dist/netstat/index.d.ts",
"default": "./dist/netstat/index.js"
},
"require": {
"types": "./dist/netstat/index.d.cts",
"default": "./dist/netstat/index.cjs"
}
}
},
"author": "Shahrad Elahi <shahrad@litehex.com> (https://github.com/shahradelahi)",
"repository": {
"type": "git",
"url": "https://github.com/shahradelahi/node-netkit.git"
},
"license": "GPL-3.0",
"keywords": [
"network",
"ip",
"tun",
"route",
"linux",
"toolkit",
"node"
],
"publishConfig": {
"access": "public"
}
}