-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.71 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
{
"name": "@did-connect/state",
"description": "State machine for did-connect session",
"version": "2.2.4",
"author": {
"name": "wangshijun",
"email": "[email protected]",
"url": "https://github.com/wangshijun"
},
"contributors": [
"wangshijun <[email protected]> (https://github.com/wangshijun)"
],
"bugs": {
"url": "https://github.com/ArcBlock/did-connect/issues",
"email": "[email protected]"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@arcblock/jwt": "^1.18.115",
"@arcblock/ws": "^1.18.115",
"@did-connect/types": "2.2.4",
"@ocap/util": "^1.18.115",
"@ocap/wallet": "^1.18.115",
"axios": "^0.27.2",
"debug": "^4.3.4",
"lodash": "^4.17.21",
"nanoid": "^3.3.4",
"node-localstorage": "^2.2.1",
"object-hash": "^3.0.0",
"url-join": "^4.0.1",
"xstate": "^4.33.6"
},
"devDependencies": {
"@arcblock/eslint-config-ts": "0.2.4",
"eslint": "^8.26.0",
"jest": "^28.1.3",
"p-wait-for": "^3.2.0",
"ts-jest": "^28.0.8",
"type-fest": "^3.1.0",
"typescript": "^4.8.4"
},
"homepage": "https://github.com/ArcBlock/did-connect",
"keywords": [
"did",
"web3"
],
"license": "Apache-2.0",
"main": "./lib/index.js",
"typings": "./lib/index.d.ts",
"files": [
"lib"
],
"repository": {
"type": "git",
"url": "https://github.com/ArcBlock/did-connect"
},
"scripts": {
"lint": "eslint src tests",
"lint:fix": "eslint --fix src tests",
"prebuild": "npm run clean",
"build": "tsc",
"watch": "tsc -b --watch",
"check": "tsc --noEmit",
"clean": "rm -rf ./lib",
"test": "jest --forceExit",
"coverage": "npm run test -- --coverage"
}
}