@aria-cli/wireguard 1.0.1 → 1.0.2
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/dist/wireguard.node +0 -0
- package/package.json +18 -18
- package/wireguard.darwin-arm64.node +0 -0
package/dist/wireguard.node
CHANGED
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aria-cli/wireguard",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"description": "WireGuard native addon for ARIA secure networking (boringtun via napi-rs)",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -44,23 +44,11 @@
|
|
|
44
44
|
]
|
|
45
45
|
}
|
|
46
46
|
},
|
|
47
|
-
"scripts": {
|
|
48
|
-
"build": "tsc -b --force tsconfig.json && napi build --platform --release",
|
|
49
|
-
"build:debug": "napi build --platform",
|
|
50
|
-
"test": "vitest run --config vitest.config.ts",
|
|
51
|
-
"test:list": "tsx tests/print-default-test-lane.ts",
|
|
52
|
-
"test:watch": "vitest --config vitest.config.ts",
|
|
53
|
-
"test:integration": "vitest run --config vitest.integration.config.ts",
|
|
54
|
-
"test:native": "vitest run --config vitest.native.config.ts",
|
|
55
|
-
"test:e2e": "vitest run --config vitest.e2e.config.ts",
|
|
56
|
-
"test:real": "vitest run --config vitest.real.config.ts",
|
|
57
|
-
"test:lanes": "tsx tests/print-test-lane-manifest.ts"
|
|
58
|
-
},
|
|
59
47
|
"dependencies": {
|
|
60
|
-
"@aria-cli/aria": "workspace:*",
|
|
61
|
-
"@aria-cli/tools": "workspace:*",
|
|
62
48
|
"better-sqlite3": "^12.6.2",
|
|
63
|
-
"ws": "^8.19.0"
|
|
49
|
+
"ws": "^8.19.0",
|
|
50
|
+
"@aria-cli/tools": "1.0.2",
|
|
51
|
+
"@aria-cli/aria": "1.0.2"
|
|
64
52
|
},
|
|
65
53
|
"devDependencies": {
|
|
66
54
|
"@napi-rs/cli": "^3.0.0",
|
|
@@ -72,5 +60,17 @@
|
|
|
72
60
|
"index.d.ts",
|
|
73
61
|
"dist/",
|
|
74
62
|
"*.node"
|
|
75
|
-
]
|
|
76
|
-
|
|
63
|
+
],
|
|
64
|
+
"scripts": {
|
|
65
|
+
"build": "tsc -b --force tsconfig.json && napi build --platform --release",
|
|
66
|
+
"build:debug": "napi build --platform",
|
|
67
|
+
"test": "vitest run --config vitest.config.ts",
|
|
68
|
+
"test:list": "tsx tests/print-default-test-lane.ts",
|
|
69
|
+
"test:watch": "vitest --config vitest.config.ts",
|
|
70
|
+
"test:integration": "vitest run --config vitest.integration.config.ts",
|
|
71
|
+
"test:native": "vitest run --config vitest.native.config.ts",
|
|
72
|
+
"test:e2e": "vitest run --config vitest.e2e.config.ts",
|
|
73
|
+
"test:real": "vitest run --config vitest.real.config.ts",
|
|
74
|
+
"test:lanes": "tsx tests/print-test-lane-manifest.ts"
|
|
75
|
+
}
|
|
76
|
+
}
|
|
File without changes
|