forked from dhiway/vc-export
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.38 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
{
"name": "@cord.network/vc-export",
"version": "0.9.3-1rc20",
"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 <[email protected]>",
"license": "Apache v2.0",
"homepage": "https://github.com/dhiway/cord.js#readme",
"devDependencies": {
"@types/jsonabc": "^2.3.3",
"dotenv": "^16.3.1",
"jsonabc": "^2.3.1",
"prettier": "3.2.5",
"typescript": "^4.8.3"
},
"dependencies": {
"@cord.network/sdk": "0.9.3-1rc20",
"moment": "^2.29.4"
}
}