-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 973 Bytes
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 973 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{
"name": "systemlocker-simple",
"version": "1.0.0",
"description": "Official System Locker Simple client for Node.js. Performs stateless license checks over POST /auth, for software on machines you control.",
"repository": {
"type": "git",
"url": "git+https://github.com/systemlocker/System-Locker-Simple-NodeJS.git"
},
"keywords": [
"systemlocker",
"licensing",
"authentication",
"license-verification"
],
"engines": {
"node": ">=20"
},
"main": "./index.cjs",
"types": "./index.d.cts",
"exports": {
".": {
"import": "./index.mjs",
"require": "./index.cjs",
"default": "./index.cjs"
},
"./hwid": {
"import": "./hwid/index.mjs",
"require": "./hwid/index.cjs",
"default": "./hwid/index.cjs"
},
"./package.json": "./package.json"
},
"files": [
"index.cjs",
"index.mjs",
"index.d.cts",
"src/",
"hwid/",
"README.md",
"SECURITY.md"
]
}