-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.87 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
85
86
87
{
"name": "@fioprotocol/fio-wallet-snap",
"version": "1.1.1",
"description": "The FIO Wallet SNAP lets every Metamask user self-custody their FIO identity and gain access to the FIO App without setting up new accounts or passwords. The FIO App lets MetaMask users register and link their FIO Handle, as well as send and receive FIO Requests and sign NFTs. FIO Wallet SNAP also supports FIO Handle resolution inside MetaMask.",
"repository": {
"type": "git",
"url": "https://github.com/fioprotocol/fio-wallet-snap.git"
},
"license": "(MIT-0 OR Apache-2.0)",
"main": "./dist/bundle.js",
"files": [
"dist/",
"images/",
"snap.manifest.json"
],
"scripts": {
"allow-scripts": "yarn workspace root allow-scripts",
"build": "mm-snap build",
"build:clean": "yarn clean && yarn build",
"clean": "rimraf dist",
"lint": "yarn lint:eslint && yarn lint:misc --check",
"lint:eslint": "eslint . --cache --ext js,ts",
"lint:fix": "yarn lint:eslint --fix && yarn lint:misc --write",
"lint:misc": "prettier '**/*.json' '**/*.md' '!CHANGELOG.md' --ignore-path .gitignore",
"serve": "mm-snap serve",
"start": "mm-snap watch",
"test": "jest"
},
"dependencies": {
"@metamask/key-tree": "9.1.2",
"@metamask/snaps-sdk": "6.3.0",
"bigi": "1.4.2",
"bip39": "3.1.0",
"browserify-aes": "1.2.0",
"bs58": "5.0.0",
"buffer": "6.0.3",
"create-hash": "1.2.0",
"create-hmac": "1.1.7",
"ecurve": "1.0.6",
"hdkey": "2.1.0",
"long": "5.2.3",
"randombytes": "2.1.0",
"text-encoding": "0.7.0"
},
"devDependencies": {
"@jest/globals": "29.5.0",
"@metamask/auto-changelog": "3.4.4",
"@metamask/eslint-config": "13.0.0",
"@metamask/eslint-config-jest": "13.0.0",
"@metamask/eslint-config-nodejs": "13.0.0",
"@metamask/eslint-config-typescript": "13.0.0",
"@metamask/snaps-cli": "6.3.1",
"@metamask/snaps-jest": "8.3.0",
"@types/bigi": "1.4.5",
"@types/create-hash": "1.2.6",
"@types/create-hmac": "1.1.3",
"@types/ecurve": "1.0.3",
"@types/jest": "29.5.11",
"@types/randombytes": "2.0.3",
"@types/text-encoding": "0.0.39",
"@typescript-eslint/eslint-plugin": "5.42.1",
"@typescript-eslint/parser": "5.42.1",
"eslint": "8.45.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jest": "27.1.5",
"eslint-plugin-jsdoc": "41.1.2",
"eslint-plugin-n": "15.7.0",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-promise": "6.1.1",
"jest": "29.5.0",
"prettier": "2.7.1",
"prettier-plugin-packagejson": "2.2.11",
"rimraf": "3.0.2",
"through2": "4.0.2",
"ts-jest": "29.1.0",
"typescript": "4.7.4"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=18.6.0"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}