-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.42 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.42 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
{
"name": "@canton-network/core-rpc-errors",
"version": "1.2.3",
"type": "module",
"description": "Wrapper for JSON-RPC error objects",
"author": "Alex Matson <alex.matson@digitalasset.com>",
"packageManager": "yarn@4.9.4",
"license": "Apache-2.0",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"default": "./dist/index.js"
}
},
"files": [
"dist/**"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsup --onSuccess \"tsc\"",
"dev": "tsup --watch --onSuccess \"tsc\"",
"flatpack": "yarn pack --out \"$FLATPACK_OUTDIR\"",
"clean": "tsc -b --clean; rm -rf dist",
"test": "vitest run --project node --passWithNoTests",
"test:coverage": "vitest run --project node --coverage --passWithNoTests"
},
"dependencies": {
"@metamask/rpc-errors": "^7.0.3"
},
"devDependencies": {
"@vitest/coverage-v8": "^4.1.2",
"tsup": "^8.5.1",
"typescript": "^5.9.3",
"vitest": "^4.1.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/canton-network/wallet-gateway.git",
"directory": "core/rpc-errors"
}
}