This repository has been archived by the owner on Jul 21, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add types and update deps (#25)
Adds types.
- Loading branch information
1 parent
a6433e5
commit e2395de
Showing
8 changed files
with
39 additions
and
25 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 |
---|---|---|
|
@@ -9,7 +9,7 @@ | |
"lint": "aegir lint", | ||
"test:node": "aegir test -t node", | ||
"test:browser": "aegir test -t browser -t webworker", | ||
"build": "aegir build", | ||
"prepare": "aegir build --no-bundle", | ||
"docs": "aegir docs", | ||
"release": "aegir release", | ||
"release-minor": "aegir release --type minor", | ||
|
@@ -36,18 +36,26 @@ | |
"url": "https://github.com/libp2p/js-libp2p-record/issues" | ||
}, | ||
"homepage": "https://github.com/libp2p/js-libp2p-record", | ||
"files": [ | ||
"src", | ||
"dist" | ||
], | ||
"eslintConfig": { | ||
"extends": "ipfs" | ||
}, | ||
"types": "dist/src/index.d.ts", | ||
"devDependencies": { | ||
"aegir": "^25.0.0", | ||
"libp2p-crypto": "^0.18.0", | ||
"aegir": "^30.3.0", | ||
"libp2p-crypto": "^0.19.0", | ||
"multibase": "^3.0.0", | ||
"peer-id": "^0.14.0" | ||
}, | ||
"dependencies": { | ||
"err-code": "^2.0.0", | ||
"err-code": "^3.0.0", | ||
"multihashes": "^3.0.1", | ||
"multihashing-async": "^2.0.1", | ||
"multihashing-async": "^2.1.0", | ||
"protons": "^2.0.0", | ||
"uint8arrays": "^1.1.0" | ||
"uint8arrays": "^2.0.5" | ||
}, | ||
"contributors": [ | ||
"Vasco Santos <[email protected]>", | ||
|
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
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
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
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
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
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
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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
{ | ||
"extends": "aegir/src/config/tsconfig.aegir.json", | ||
"compilerOptions": { | ||
"outDir": "dist" | ||
}, | ||
"include": [ | ||
"test", | ||
"src" | ||
] | ||
} |