-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.31 KB
/
package.json
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
{
"name": "@orbs-network/lokey",
"version": "0.0.1",
"description": "LoKey is a lightweight library that leverages web-native APIs, including WebAuthn and Subtle Crypto, to securely authenticate users and sign transactions. Private keys are stored within a secure enclave on the user's device, ensuring robust protection.",
"main": "dist/index.js",
"files": [
"dist"
],
"tsup": {
"entry": [
"src/index.ts"
],
"minify": true,
"dts": true,
"clean": true,
"splitting": true,
"platform": "browser",
"format": [
"cjs",
"esm"
]
},
"scripts": {
"build": "tsup",
"watch": "tsup --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/orbs-network/lokey.git"
},
"bugs": {
"url": "https://github.com/orbs-network/lokey/issues"
},
"homepage": "https://github.com/orbs-network/lokey#readme",
"keywords": [
"crypto",
"signer",
"wallet",
"trading",
"delegated signer"
],
"author": "sukhsinghcodes",
"license": "ISC",
"type": "module",
"devDependencies": {
"@eslint/js": "^9.15.0",
"@typescript-eslint/eslint-plugin": "^8.15.0",
"@typescript-eslint/parser": "^8.15.0",
"eslint": "^9.15.0",
"tsup": "^8.3.5",
"typescript": "^5.6.3",
"typescript-eslint": "^8.15.0"
}
}