-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.33 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.33 KB
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "@xultech/devpayr",
"version": "0.1.4",
"description": "DevPayr Node.js SDK for secure license validation, injectable handling, and project access enforcement.",
"keywords": [
"devpayr",
"sdk",
"license",
"license-manager",
"license-validation",
"injectables",
"api-client",
"saas",
"xultech",
"nodejs-sdk"
],
"author": "XulTech Ltd",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"module": "dist/index.js",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"prepare": "npm run build",
"clean": "rimraf dist",
"dev": "tsc --watch",
"test": "echo \"No tests yet\"",
"example": "ts-node src/examples/validateLicense.ts"
},
"repository": {
"type": "git",
"url": "https://github.com/DevPayr/devpayr-node-sdk.git"
},
"bugs": {
"url": "https://github.com/DevPayr/devpayr-node-sdk/issues"
},
"homepage": "https://devpayr.com",
"engines": {
"node": ">=14"
},
"sideEffects": false,
"devDependencies": {
"rimraf": "^5.0.0",
"ts-node": "^10.9.2",
"typescript": "^5.4.0"
},
"dependencies": {
"axios": "^1.6.0",
"crypto-js": "^4.1.1"
}
}