-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 1.93 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "@oddjs/odd-walletauth",
"version": "0.2.2",
"description": "Use the [ODD SDK](https://github.com/oddsdk/ts-odd#readme) with a blockchain wallet. Access your personal encrypted file system with your wallet keys.",
"scripts": {
"build": "npm run build:lib && npm run build:bundle",
"build:lib": "rimraf lib && tsc",
"build:bundle": "rimraf dist && esbuild src/index.ts --bundle --format=esm --outfile=dist/odd-walletauth.js --sourcemap",
"prepare": "npm run build"
},
"main": "./lib/index.js",
"exports": {
".": "./lib/index.js",
"./package.json": "./package.json",
"./lib/*": [
"./lib/*.js",
"./lib/*",
"./lib/*/index.js"
],
"./*": [
"./lib/*.js",
"./lib/*",
"./lib/*/index.js",
"./*"
]
},
"types": "lib/index.d.ts",
"typesVersions": {
"*": {
"lib/index.d.ts": [
"lib/index.d.ts"
],
"*": [
"lib/*"
]
}
},
"files": [
"dist",
"lib",
"LICENSE",
"package.json",
"README.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/oddsdk/odd-walletauth.git"
},
"keywords": [
"odd",
"oddsdk",
"oddjs",
"ts-odd",
"walletauth",
"wallet",
"metamask",
"ethereum"
],
"author": "icidasset",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/oddsdk/odd-walletauth/issues"
},
"homepage": "https://github.com/oddsdk/odd-walletauth#readme",
"peerDependencies": {
"@oddjs/odd": "^0.37.0"
},
"dependencies": {
"@noble/hashes": "^1.1.2",
"@noble/secp256k1": "^1.6.3",
"eip1193-provider": "^1.0.1",
"tweetnacl": "^1.0.3",
"uint8arrays": "^3.1.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.10.0",
"@typescript-eslint/parser": "^5.10.0",
"esbuild": "^0.15.7",
"eslint": "^8.7.0",
"events": "^3.3.0",
"rimraf": "^3.0.2",
"typescript": "^4.5.5"
}
}