jwt-license-verifier 0.0.5

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of jwt-license-verifier might be problematic. Click here for more details.

@@ -0,0 +1,2 @@
1
+ export { verifyLicense } from './licenseVerifier';
2
+ export { getNodeInfo } from './nodeinfo';
@@ -0,0 +1 @@
1
+ export declare function verifyLicense(token: string, publicKey: string): Promise<object>;
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1 @@
1
+ export declare const getNodeInfo: (app: string | undefined) => Promise<string>;
@@ -0,0 +1 @@
1
+ export {};
package/package.json ADDED
@@ -0,0 +1,49 @@
1
+ {
2
+ "name": "jwt-license-verifier",
3
+ "description": "Impleo Jwt license verifier",
4
+ "author": "IMPLEOOTV SYSTEMS LTD",
5
+ "license": "Proprietary",
6
+ "homepage": "https://www.impleotv.com",
7
+ "private": false,
8
+ "version": "0.0.5",
9
+ "type": "module",
10
+ "main": "./dist/jwt-license-verifier.umd.cjs",
11
+ "module": "./dist/jwt-license-verifier.js",
12
+ "types": "./dist/index.d.ts",
13
+ "exports": {
14
+ ".": {
15
+ "import": "./dist/jwt-license-verifier.js",
16
+ "require": "./dist/jwt-license-verifier.umd.cjs"
17
+ }
18
+ },
19
+ "scripts": {
20
+ "dev": "vite",
21
+ "build": "tsc && vite build",
22
+ "preview": "vite preview",
23
+ "test": "jest",
24
+ "release": "standard-version",
25
+ "publish": "npm publish"
26
+ },
27
+ "devDependencies": {
28
+ "@types/jest": "^29.5.11",
29
+ "@types/jsonwebtoken": "^9.0.5",
30
+ "@types/node": "^20.10.4",
31
+ "@typescript-eslint/eslint-plugin": "^6.14.0",
32
+ "@typescript-eslint/parser": "^6.14.0",
33
+ "eslint": "^8.55.0",
34
+ "jest": "^29.7.0",
35
+ "standard-version": "^9.5.0",
36
+ "ts-jest": "^29.1.1",
37
+ "typescript": "^5.2.2",
38
+ "vite": "^5.0.8",
39
+ "vite-plugin-dts": "^3.6.4"
40
+ },
41
+ "dependencies": {
42
+ "@types/systeminformation": "^3.54.1",
43
+ "jsonwebtoken": "^9.0.2",
44
+ "systeminformation": "^5.21.20"
45
+ },
46
+ "files": [
47
+ "dist"
48
+ ]
49
+ }