forked from openwallet-foundation/credo-ts
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.03 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.03 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
{
"name": "@credo-ts/drpc",
"exports": {
"cli": "./build/index.mjs",
"import": "./src/index.ts"
},
"version": "0.6.2",
"files": [
"build"
],
"license": "Apache-2.0",
"publishConfig": {
"access": "public",
"types": "./build/index.d.mts",
"module": "./build/index.mjs",
"exports": {
".": "./build/index.mjs",
"./package.json": "./package.json"
}
},
"homepage": "https://github.com/openwallet-foundation/credo-ts/tree/main/packages/drpc",
"repository": {
"type": "git",
"url": "https://github.com/openwallet-foundation/credo-ts",
"directory": "packages/drpc"
},
"scripts": {
"build": "tsdown --config-loader unconfig",
"prepublishOnly": "pnpm run build"
},
"dependencies": {
"@credo-ts/core": "workspace:*",
"@credo-ts/didcomm": "workspace:*",
"class-transformer": "catalog:",
"class-validator": "catalog:"
},
"devDependencies": {
"@credo-ts/node": "workspace:*",
"reflect-metadata": "catalog:",
"typescript": "catalog:"
}
}