-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
65 lines (65 loc) · 1.84 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
{
"name": "didcomm-demo",
"version": "1.0.0",
"description": "A browser-based demonstration of DIDComm v2 messaging, showcasing simple and advanced protocols for decentralized identity communication.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "webpack serve",
"build": "webpack build",
"format": "prettier --write \"src/**/*.ts\""
},
"repository": {
"type": "git",
"url": "https://github.com/decentralized-identity/didcomm-demo.git"
},
"keywords": [
"DIDComm",
"decentralized identity",
"identity",
"communication",
"DID",
"messaging"
],
"author": "Decentralized Identity Foundation",
"license": "MIT",
"homepage": "https://demo.didcomm.org",
"bugs": {
"url": "https://github.com/decentralized-identity/didcomm-demo/issues"
},
"dependencies": {
"@noble/curves": "^1.2.0",
"bs58": "^5.0.0",
"didcomm": "^0.4.1",
"lit-code": "^0.1.12",
"mithril": "^2.2.2",
"multibase": "^4.0.6",
"multicodec": "^3.2.1",
"uuid": "^9.0.0",
"varint": "^6.0.0"
},
"devDependencies": {
"@fortawesome/fontawesome-free": "^6.4.2",
"@fortawesome/fontawesome-svg-core": "^6.4.2",
"@fortawesome/free-solid-svg-icons": "^6.4.2",
"@fullhuman/postcss-purgecss": "^5.0.0",
"@types/mithril": "^2.0.14",
"@types/prismjs": "^1.26.0",
"@types/uuid": "^9.0.3",
"@types/varint": "^6.0.3",
"bulma": "^0.9.4",
"css-loader": "^6.8.1",
"html-loader": "^4.2.0",
"markdown-loader": "^8.0.0",
"mini-css-extract-plugin": "^2.7.6",
"postcss-loader": "^7.3.3",
"prettier": "^3.0.3",
"prismjs": "^1.29.0",
"style-loader": "^3.3.3",
"ts-loader": "^9.4.4",
"typescript": "^5.2.2",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
}
}