-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.32 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.32 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
{
"name": "@orbs-network/lokey",
"version": "0.1.19",
"description": "LoKey is a lightweight library that leverages ethers.js to securely delegate a signer and sign messages without prompting the user for each siging operation.",
"main": "./dist/loKey.umd.js",
"module": "./dist/loKey.es.js",
"exports": {
".": {
"import": {
"types": "./dist/loKey.es.d.ts",
"default": "./dist/loKey.es.js"
},
"require": "./dist/loKey.umd.cjs"
}
},
"files": [
"dist"
],
"scripts": {
"build": "vite build",
"watch": "vite build --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",
"typescript": "^5.6.3",
"typescript-eslint": "^8.15.0",
"vite": "^6.0.11",
"vite-plugin-dts": "^4.5.0"
},
"dependencies": {
"ethers": "^6.13.5"
}
}