electron-license-kit
Version:
Secure licensing, storage, and utilities for Electron apps with Supabase
77 lines (76 loc) • 1.86 kB
JSON
{
"name": "electron-license-kit",
"version": "0.1.1",
"description": "Secure licensing, storage, and utilities for Electron apps with Supabase",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts --clean",
"dev": "tsup src/index.ts --format cjs,esm --dts --watch",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"clean": "rimraf dist"
},
"keywords": [
"electron",
"license",
"supabase",
"hwid",
"secure-storage",
"auto-updater",
"typescript"
],
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/MacroMan5/electron-license-kit.git"
},
"bugs": {
"url": "https://github.com/MacroMan5/electron-license-kit/issues"
},
"homepage": "https://github.com/MacroMan5/electron-license-kit#readme",
"peerDependencies": {
"electron": ">=33.0.0",
"electron-updater": ">=6.0.0"
},
"peerDependenciesMeta": {
"electron": {
"optional": true
},
"electron-updater": {
"optional": true
}
},
"dependencies": {
"@supabase/supabase-js": "^2.86.2",
"node-machine-id": "^1.1.12"
},
"devDependencies": {
"@types/node": "^22.0.0",
"electron": "^35.0.0",
"eslint": "^8.55.0",
"@typescript-eslint/eslint-plugin": "^6.13.0",
"@typescript-eslint/parser": "^6.13.0",
"rimraf": "^5.0.5",
"tsup": "^8.0.1",
"typescript": "^5.3.0",
"vitest": "^3.0.0"
}
}