forked from dhiway/vc-export
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.86 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.86 KB
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
{
"name": "@cord.network/vc-export",
"version": "0.9.5-rc3",
"description": "Provides the option to build and verify VCs and VPs",
"main": "./lib/cjs/index.js",
"module": "./lib/esm/index.js",
"types": "./lib/cjs/index.d.ts",
"exports": {
".": {
"import": "./lib/esm/index.js",
"require": "./lib/cjs/index.js"
}
},
"files": [
"lib/**/*"
],
"scripts": {
"clean": "rimraf ./lib",
"build": "yarn build:ts",
"build:ts": "yarn build:cjs && yarn build:esm",
"build:cjs": "tsc --declaration -p tsconfig.build.json && echo '{\"type\":\"commonjs\"}' > ./lib/cjs/package.json",
"build:esm": "tsc --declaration -p tsconfig.esm.json && echo '{\"type\":\"module\"}' > ./lib/esm/package.json"
},
"repository": {
"type": "git",
"url": "https://github.com/dhiway/cord.js.git"
},
"engines": {
"node": ">=18.0"
},
"author": "Dhiway Engineering <engineering@dhiway.com>",
"license": "Apache v2.0",
"homepage": "https://github.com/dhiway/cord.js#readme",
"devDependencies": {
"@types/express": "^5.0.0",
"@types/jsonabc": "^2.3.3",
"@types/node": "^22.10.5",
"@types/uuid": "^10.0.0",
"dotenv": "^16.3.1",
"jsonabc": "^2.3.1",
"prettier": "^3.4.1",
"typescript": "^5.6.2"
},
"dependencies": {
"@cord.network/sdk": "0.9.5-rc1",
"@digitalcredentials/ed25519-signature-2020": "^6.0.0",
"@digitalcredentials/ed25519-verification-key-2020": "^4.0.0",
"@transmute/did-key-ed25519": "^0.3.0-unstable.10",
"bs58": "^6.0.0",
"ethereum-cryptography": "^3.0.0",
"express": "^4.21.1",
"jsonld": "^8.3.2",
"jsonld-signatures": "^11.5.0",
"moment": "^2.29.4",
"ts-node": "^10.9.1"
}
}