-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e5bb5fb
commit 0a92be7
Showing
1 changed file
with
14 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,32 @@ | ||
{ | ||
"name": "the-wireguard-effect", | ||
"version": "0.0.1-alpha.16", | ||
"version": "0.0.1-alpha.17", | ||
"description": "Cross platform userspace wireguard api client for nodejs built on wireguard-go with effect-ts", | ||
"keywords": [ | ||
"wireguard", | ||
"vpn", | ||
"effect-ts" | ||
], | ||
"homepage": "https://github.com/leonitousconforti/the-wireguard-effect", | ||
"bugs": { | ||
"url": "https://github.com/leonitousconforti/the-wireguard-effect/issues", | ||
"email": "[email protected]" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/leonitousconforti/the-wireguard-effect.git" | ||
"url": "git+https://github.com/leonitousconforti/the-wireguard-effect.git" | ||
}, | ||
"license": "GPL-3.0-only", | ||
"author": "Leo Conforti <[email protected]> (https://leoconforti.us)", | ||
"type": "module", | ||
"main": "./dist/cjs/index.js", | ||
"module": "./dist/esm/index.js", | ||
"types": "./dist/dts/index.d.ts", | ||
"directories": { | ||
"doc": "docs", | ||
"example": "examples", | ||
"test": "test" | ||
}, | ||
"scripts": { | ||
"build": "pnpm clean && pnpm codegen && pnpm build-esm && pnpm build-cjs && pnpm build-annotate && build-utils pack-v2 && pnpm build-submodules && docgen", | ||
"build-annotate": "babel build --plugins annotate-pure-calls --out-dir build --source-maps", | ||
|