generated from antfu/starter-ts
-
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
57ab385
commit d1973e9
Showing
10 changed files
with
983 additions
and
735 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,38 +1,29 @@ | ||
# pkg-placeholder | ||
# privatebin-decrypt | ||
|
||
[![npm version][npm-version-src]][npm-version-href] | ||
[![npm downloads][npm-downloads-src]][npm-downloads-href] | ||
[![bundle][bundle-src]][bundle-href] | ||
[![JSDocs][jsdocs-src]][jsdocs-href] | ||
[![License][license-src]][license-href] | ||
|
||
_description_ | ||
A simple library to decrypt PrivateBin pastes | ||
|
||
> **Note**: | ||
> Replace `pkg-placeholder`, `_description_` and `antfu` globally to use this template. | ||
|
||
## Sponsors | ||
|
||
<p align="center"> | ||
<a href="https://cdn.jsdelivr.net/gh/antfu/static/sponsors.svg"> | ||
<img src='https://cdn.jsdelivr.net/gh/antfu/static/sponsors.svg'/> | ||
</a> | ||
</p> | ||
|
||
## License | ||
|
||
[MIT](./LICENSE) License © 2023-PRESENT [Anthony Fu](https://github.com/antfu) | ||
[MIT](./LICENSE) License © 2023-PRESENT [Elias Blume](https://github.com/eliasblume) | ||
|
||
|
||
<!-- Badges --> | ||
|
||
[npm-version-src]: https://img.shields.io/npm/v/pkg-placeholder?style=flat&colorA=080f12&colorB=1fa669 | ||
[npm-version-href]: https://npmjs.com/package/pkg-placeholder | ||
[npm-downloads-src]: https://img.shields.io/npm/dm/pkg-placeholder?style=flat&colorA=080f12&colorB=1fa669 | ||
[npm-downloads-href]: https://npmjs.com/package/pkg-placeholder | ||
[bundle-src]: https://img.shields.io/bundlephobia/minzip/pkg-placeholder?style=flat&colorA=080f12&colorB=1fa669&label=minzip | ||
[bundle-href]: https://bundlephobia.com/result?p=pkg-placeholder | ||
[license-src]: https://img.shields.io/github/license/antfu/pkg-placeholder.svg?style=flat&colorA=080f12&colorB=1fa669 | ||
[license-href]: https://github.com/antfu/pkg-placeholder/blob/main/LICENSE | ||
[npm-version-src]: https://img.shields.io/npm/v/privatebin-decrypt?style=flat&colorA=080f12&colorB=1fa669 | ||
[npm-version-href]: https://npmjs.com/package/privatebin-decrypt | ||
[npm-downloads-src]: https://img.shields.io/npm/dm/privatebin-decrypt?style=flat&colorA=080f12&colorB=1fa669 | ||
[npm-downloads-href]: https://npmjs.com/package/privatebin-decrypt | ||
[bundle-src]: https://img.shields.io/bundlephobia/minzip/privatebin-decrypt?style=flat&colorA=080f12&colorB=1fa669&label=minzip | ||
[bundle-href]: https://bundlephobia.com/result?p=privatebin-decrypt | ||
[license-src]: https://img.shields.io/github/license/antfu/privatebin-decrypt.svg?style=flat&colorA=080f12&colorB=1fa669 | ||
[license-href]: https://github.com/antfu/privatebin-decrypt/blob/main/LICENSE | ||
[jsdocs-src]: https://img.shields.io/badge/jsdocs-reference-080f12?style=flat&colorA=080f12&colorB=1fa669 | ||
[jsdocs-href]: https://www.jsdocs.io/package/pkg-placeholder | ||
[jsdocs-href]: https://www.jsdocs.io/package/privatebin-decrypt |
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,18 +1,17 @@ | ||
{ | ||
"name": "pkg-placeholder", | ||
"name": "privatebin-decrypt", | ||
"type": "module", | ||
"version": "0.0.0", | ||
"packageManager": "[email protected]", | ||
"description": "_description_", | ||
"author": "Anthony Fu <[email protected]>", | ||
"description": "a ts/js lib to decrypt content from privateBin", | ||
"author": "Elias Blume", | ||
"license": "MIT", | ||
"funding": "https://github.com/sponsors/antfu", | ||
"homepage": "https://github.com/antfu/pkg-placeholder#readme", | ||
"homepage": "https://github.com/eliasblume/privatebin-decrypt#readme", | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/antfu/pkg-placeholder.git" | ||
"url": "git+https://github.com/eliasblume/privatebin-decrypt.git" | ||
}, | ||
"bugs": "https://github.com/antfu/pkg-placeholder/issues", | ||
"bugs": "https://github.com/eliasblume/privatebin-decrypt/issues", | ||
"keywords": [], | ||
"sideEffects": false, | ||
"exports": { | ||
|
@@ -45,24 +44,29 @@ | |
"start": "esno src/index.ts", | ||
"test": "vitest", | ||
"typecheck": "tsc --noEmit", | ||
"prepare": "simple-git-hooks" | ||
"prepare": "simple-git-hooks", | ||
"update": "pnpx taze major -wi" | ||
}, | ||
"dependencies": { | ||
"bs58": "^5.0.0", | ||
"typescript": "^5.3.2" | ||
}, | ||
"devDependencies": { | ||
"@antfu/eslint-config": "^1.2.1", | ||
"@antfu/ni": "^0.21.9", | ||
"@antfu/ni": "^0.21.10", | ||
"@antfu/utils": "^0.7.6", | ||
"@types/node": "^20.9.1", | ||
"@types/node": "^20.9.2", | ||
"bumpp": "^9.2.0", | ||
"eslint": "^8.53.0", | ||
"eslint": "^8.54.0", | ||
"esno": "^4.0.0", | ||
"lint-staged": "^15.1.0", | ||
"pnpm": "^8.10.5", | ||
"rimraf": "^5.0.5", | ||
"simple-git-hooks": "^2.9.0", | ||
"typescript": "^5.2.2", | ||
"unbuild": "^2.0.0", | ||
"vite": "^5.0.0", | ||
"vitest": "^1.0.0-beta.4" | ||
"vitest": "1.0.0-beta.5" | ||
|
||
}, | ||
"simple-git-hooks": { | ||
"pre-commit": "pnpm lint-staged" | ||
|
Oops, something went wrong.