-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
79 lines (79 loc) · 2.36 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
{
"name": "anchor-link",
"version": "3.5.1",
"description": "Library for authenticating and signing transactions using the Anchor Link protocol",
"license": "BSD-3-Clause",
"main": "lib/anchor-link.js",
"module": "lib/anchor-link.m.js",
"types": "lib/anchor-link.d.ts",
"unpkg": "lib/anchor-link.bundle.js",
"scripts": {
"prepare": "make"
},
"directories": {
"lib": "lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/greymass/anchor-link.git"
},
"authors": [
"Johan Nordberg <code@johan-nordberg.com>",
"Aaron Cox <jesta@greymass.com>"
],
"bugs": {
"url": "https://github.com/greymass/anchor-link/issues"
},
"homepage": "https://github.com/greymass/anchor-link",
"files": [
"lib/*",
"src/*"
],
"browser": {
"buffer": false,
"crypto": false
},
"dependencies": {
"@greymass/miniaes": "^1.0.0",
"@wharfkit/antelope": "^1.0.7",
"@wharfkit/signing-request": "^3.2.0",
"fetch-ponyfill": "^7.1.0",
"isomorphic-ws": "^4.0.1",
"pako": "^2.0.3",
"tslib": "^2.1.0",
"uuid": "^8.3.2",
"ws": "^8.5.0"
},
"devDependencies": {
"@babel/core": "^7.12.16",
"@babel/preset-env": "^7.12.16",
"@rollup/plugin-babel": "^5.2.3",
"@rollup/plugin-commonjs": "^21.0.3",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.0.0",
"@rollup/plugin-replace": "^4.0.0",
"@rollup/plugin-typescript": "^8.1.1",
"@types/bn.js": "^5.1.0",
"@types/mocha": "^9.1.0",
"@types/node": "^17.0.23",
"@types/pako": "^1.0.1",
"@types/uuid": "^8.0.0",
"@types/ws": "^8.5.3",
"@typescript-eslint/eslint-plugin": "^5.17.0",
"@typescript-eslint/parser": "^5.17.0",
"core-js": "^3.8.3",
"eslint": "^8.12.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^4.0.0",
"gh-pages": "^3.1.0",
"mocha": "^9.0.2",
"nyc": "^15.1.0",
"prettier": "^2.2.1",
"rollup": "^2.38.5",
"rollup-plugin-dts": "^4.2.0",
"rollup-plugin-terser": "^7.0.2",
"ts-node": "^10.0.0",
"typedoc": "^0.22.13",
"typescript": "^4.1.5"
}
}