From 15fd9bbff0d381e5683430e5caf27b753c4147ca Mon Sep 17 00:00:00 2001 From: Mathias Wagner Date: Sun, 21 Jul 2024 17:57:44 +0200 Subject: [PATCH] Create javascript package.json --- integrations/javascript/package.json | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 integrations/javascript/package.json diff --git a/integrations/javascript/package.json b/integrations/javascript/package.json new file mode 100644 index 0000000..497f9ff --- /dev/null +++ b/integrations/javascript/package.json @@ -0,0 +1,22 @@ +{ + "name": "licenseapi-validator", + "version": "1.0.0", + "description": "A free, self-hosted licensing system for your software", + "main": "dist/index.js", + "module": "dist/index.mjs", + "types": "dist/index.d.ts", + "files": [ + "dist" + ], + "scripts": { + "build": "tsup" + }, + "author": "Mathias Wagner", + "license": "MIT", + "devDependencies": { + "@swc/core": "^1.7.0", + "ts-node": "^10.9.2", + "tsup": "^8.2.1", + "typescript": "^5.5.3" + } +}