-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
43 lines (43 loc) · 1.14 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
{
"name": "@hashgraph/did-sdk-js",
"version": "0.1.1",
"description": "Support for the Hedera Hashgraph DID Method and Verifiable Credentials on the Hedera JavaScript/TypeScript SDK",
"main": "dist/index.js",
"module": "dist/index.js",
"files": [
"dist/**/*"
],
"types": "dist/index.d.ts",
"scripts": {
"prepare": "npm run build",
"prepublish": "npm run build",
"build": "tsc",
"build:dev": "tsc --sourceMap -w",
"start": "node dist/index.js",
"start:dev": "nodemon --inspect dist/index.js",
"test": "mocha test/**/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hashgraph/did-sdk-js.git"
},
"author": "Hedera Hashgraph, LLC",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/hashgraph/did-sdk-js/issues"
},
"homepage": "https://github.com/hashgraph/did-sdk-js#readme",
"devDependencies": {
"@types/node": "^16.7.7",
"chai": "^4.3.4",
"mocha": "^9.0.1",
"nodemon": "^2.0.7",
"typescript": "^4.3.2"
},
"dependencies": {
"@hashgraph/sdk": "^2.0.20",
"bs58": "^4.0.1",
"js-base64": "^3.6.1",
"moment": "^2.29.1"
}
}