-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.16 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
{
"name": "@arweave-wallet-kit/othent-strategy",
"version": "0.0.1-beta.7",
"description": "Othent strategy for the Arweave Wallet Kit",
"repository": "https://github.com/labscommunity/wallet-kit-othent",
"author": "Marton Lederer <[email protected]>",
"license": "MIT",
"private": false,
"type": "module",
"publishConfig": {
"access": "public"
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"fmt": "prettier . --write"
},
"files": [
"dist"
],
"main": "./dist/index.umd.js",
"module": "./dist/index.es.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.es.js",
"require": "./dist/index.umd.js"
}
},
"devDependencies": {
"@arweave-wallet-kit/core": "^0.0.1-beta.5",
"@types/node": "^20.4.2",
"arweave": "^1.12.2",
"othent": "^1.0.645",
"prettier": "^3.0.0",
"typescript": "^5.1.6",
"vite": "^4.4.3",
"vite-plugin-dts": "^3.2.0"
},
"peerDependencies": {
"@arweave-wallet-kit/core": ">= 0.0.1-beta.1 < 2"
},
"dependencies": {
"@othent/kms": "^1.0.12",
"jwt-decode": "^4.0.0"
}
}