From baa748cb3e7c404945f93683c21f53407f16faf3 Mon Sep 17 00:00:00 2001 From: Pascal Perrenoud Date: Tue, 21 May 2024 16:09:33 +0200 Subject: [PATCH] Unify package.json --- package.json | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index a514fa9..193bd06 100644 --- a/package.json +++ b/package.json @@ -1,15 +1,21 @@ { "name": "crypto-server", "description": "Various crypto utils that only works on the server side", + "version": "1.0.0", + + "author": "Pascal Perrenoud ", + "module": "index.ts", "type": "module", - "files": ["index.ts"], + "files": ["index.ts", "src"], + "scripts": { "test": "bun test" }, + "dependencies": { "jose": "^5.3.0", - "result": "git+git@git.pband.ch:typescript/result.git" + "log": "git+https://git.pband.ch/typescript/log.git" }, "devDependencies": { "@types/bun": "^1.1.2"