forked from canton-network/wallet
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.56 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.56 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
{
"name": "@canton-network/core-rpc-errors",
"version": "1.9.0",
"type": "module",
"description": "Wrapper for JSON-RPC error objects",
"author": "Alex Matson <alex.matson@digitalasset.com>",
"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": "tsdown --onSuccess \"tsc\"",
"dev": "tsdown --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.10",
"tsdown": "^0.22.9",
"typescript": "^5.9.3",
"vitest": "^4.1.10"
},
"repository": {
"type": "git",
"url": "git+https://github.com/canton-network/wallet.git",
"directory": "core/rpc-errors"
},
"homepage": "https://github.com/canton-network/wallet/tree/main/core/rpc-errors#readme",
"bugs": {
"url": "https://github.com/canton-network/wallet/issues"
}
}