pubface 1.0.0 → 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +6 -0
- package/entitlements.mac.plist +16 -0
- package/package.json +19 -2
package/README.md
CHANGED
|
@@ -27,6 +27,12 @@ Install the command
|
|
|
27
27
|
$ npm install -g pubface
|
|
28
28
|
```
|
|
29
29
|
|
|
30
|
+
Or alternatively download the latest executable if you do not have Node.js or NPM installed
|
|
31
|
+
|
|
32
|
+
- [MacOS](https://github.com/postalsys/pubface/releases/latest/download/pubface.pkg)
|
|
33
|
+
- [Linux](https://github.com/postalsys/pubface/releases/latest/download/pubface.tar.gz)
|
|
34
|
+
- [Window](https://github.com/postalsys/pubface/releases/latest/download/pubface.exe)
|
|
35
|
+
|
|
30
36
|
Use it to get an array of interfaces
|
|
31
37
|
|
|
32
38
|
```
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
|
3
|
+
<plist version="1.0">
|
|
4
|
+
<dict>
|
|
5
|
+
<key>com.apple.security.cs.allow-jit</key>
|
|
6
|
+
<true/>
|
|
7
|
+
<key>com.apple.security.cs.allow-unsigned-executable-memory</key>
|
|
8
|
+
<true/>
|
|
9
|
+
<key>com.apple.security.cs.allow-dyld-environment-variables</key>
|
|
10
|
+
<true/>
|
|
11
|
+
<key>com.apple.security.cs.disable-library-validation</key>
|
|
12
|
+
<true/>
|
|
13
|
+
<key>com.apple.security.network.client</key>
|
|
14
|
+
<true/>
|
|
15
|
+
</dict>
|
|
16
|
+
</plist>
|
package/package.json
CHANGED
|
@@ -1,18 +1,35 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pubface",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"description": "Resolve public network interfaces for current machine",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"scripts": {
|
|
7
|
-
"test": "echo \"Error: no test specified\" && exit 1"
|
|
7
|
+
"test": "echo \"Error: no test specified\" && exit 1",
|
|
8
|
+
"build-dist": "pkg package.json"
|
|
8
9
|
},
|
|
9
10
|
"keywords": [],
|
|
10
11
|
"author": "Postal Systems OÜ",
|
|
11
12
|
"license": "MIT",
|
|
13
|
+
"bugs": {
|
|
14
|
+
"url": "https://github.com/postalsys/pubface/issues"
|
|
15
|
+
},
|
|
16
|
+
"homepage": "https://github.com/postalsys/pubface",
|
|
12
17
|
"bin": {
|
|
13
18
|
"pubface": "bin/pubface.js"
|
|
14
19
|
},
|
|
15
20
|
"dependencies": {
|
|
16
21
|
"nodemailer": "6.7.1"
|
|
22
|
+
},
|
|
23
|
+
"devDependencies": {
|
|
24
|
+
"pkg": "5.4.1"
|
|
25
|
+
},
|
|
26
|
+
"pkg": {
|
|
27
|
+
"assets": [
|
|
28
|
+
"LICENSE.txt"
|
|
29
|
+
],
|
|
30
|
+
"_targets": [
|
|
31
|
+
"node16-macos-x64"
|
|
32
|
+
],
|
|
33
|
+
"outputPath": "dist"
|
|
17
34
|
}
|
|
18
35
|
}
|