@licenseseat/js 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,49 @@
1
+ {
2
+ "name": "@licenseseat/js",
3
+ "version": "0.1.0",
4
+ "description": "Official JavaScript SDK for LicenseSeat – simple, secure software licensing.",
5
+ "main": "dist/index.js",
6
+ "module": "dist/index.js",
7
+ "exports": {
8
+ "import": "./dist/index.js"
9
+ },
10
+ "files": [
11
+ "dist/"
12
+ ],
13
+ "type": "module",
14
+ "scripts": {
15
+ "build": "esbuild src/index.js --bundle --format=esm --outfile=dist/index.js",
16
+ "dev": "esbuild src/index.js --bundle --format=esm --outfile=dist/index.js --watch",
17
+ "test": "echo \"No tests yet\""
18
+ },
19
+ "keywords": [
20
+ "licensing",
21
+ "licenseseat",
22
+ "sdk",
23
+ "javascript",
24
+ "js",
25
+ "software licensing",
26
+ "license manager",
27
+ "licensing server",
28
+ "license key",
29
+ "api client"
30
+ ],
31
+ "repository": {
32
+ "type": "git",
33
+ "url": "https://github.com/licenseseat/licenseseat-js.git"
34
+ },
35
+ "author": "rameerez",
36
+ "license": "MIT",
37
+ "bugs": {
38
+ "url": "https://github.com/licenseseat/licenseseat-js/issues"
39
+ },
40
+ "homepage": "https://licenseseat.com",
41
+ "devDependencies": {
42
+ "esbuild": "^0.20.2"
43
+ },
44
+ "dependencies": {
45
+ "@noble/ed25519": "^2.3.0",
46
+ "@noble/hashes": "^1.8.0",
47
+ "canonical-json": "^0.2.0"
48
+ }
49
+ }