-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.25 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": "confidant-client",
"version": "0.1.0",
"repository": {
"type": "git",
"url": "[email protected]:mynearwallet/confidant-client.git"
},
"author": {
"name": "Artem",
"email": "[email protected]"
},
"exports": {
".": "./dist/index.js"
},
"types": "src/index.ts",
"scripts": {
"build": "webpack",
"test": "jest",
"prepublishOnly": "npm install && npm run test && npm run build"
},
"dependencies": {
"js-sha256": "^0.9.0",
"multisign": "git+https://github.com/mynearwallet/multisign#5aca39406ad1d26bc9536c47987316569fbd0bbf",
"near-api-js": "^0.44.2",
"near-seed-phrase": "^0.2.0"
},
"devDependencies": {
"@types/jest": "^28.1.3",
"@typescript-eslint/eslint-plugin": "^5.25.0",
"@typescript-eslint/parser": "^5.25.0",
"buffer": "^6.0.3",
"crypto-browserify": "^3.12.0",
"eslint": "^8.20.0",
"eslint-plugin-jest": "^26.2.2",
"eslint-plugin-testing-library": "^5.5.0",
"jest": "^28.1.2",
"path-browserify": "^1.0.1",
"process": "^0.11.10",
"stream-browserify": "^3.0.0",
"ts-jest": "^28.0.5",
"ts-loader": "^9.3.1",
"typescript": "^4.6.4",
"util": "^0.12.4",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0"
},
"license": "MIT"
}