Skip to content
This repository was archived by the owner on Oct 20, 2024. It is now read-only.

Commit 5ee6750

Browse files
Initial commit
0 parents  commit 5ee6750

File tree

9 files changed

+1559
-0
lines changed

9 files changed

+1559
-0
lines changed

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
node_modules/
2+
3+
# package output
4+
lib/

LICENSE

Lines changed: 674 additions & 0 deletions
Large diffs are not rendered by default.

package-lock.json

Lines changed: 336 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
{
2+
"name": "@librepass/client",
3+
"version": "1.0.0",
4+
"description": "LibrePass API Client",
5+
"main": "lib/index.js",
6+
"scripts": {
7+
"package": "rm -rf lib && tsc"
8+
},
9+
"repository": {
10+
"type": "git",
11+
"url": "git+https://github.com/LibrePass/npm-client.git"
12+
},
13+
"author": "M3DZIK <me@medzik.dev>",
14+
"license": "GPL-3.0",
15+
"bugs": {
16+
"url": "https://github.com/LibrePass/npm-client/issues"
17+
},
18+
"homepage": "https://github.com/LibrePass/npm-client#readme",
19+
"devDependencies": {
20+
"typescript": "^5.3.3"
21+
},
22+
"dependencies": {
23+
"@medzik/libcrypto": "^1.2.0"
24+
}
25+
}

0 commit comments

Comments
 (0)