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
70 lines (70 loc) · 2.48 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 2.48 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
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "@canton-network/core-wallet-store-sql",
"version": "1.11.0",
"type": "module",
"description": "SQL implementation of the Store API",
"license": "Apache-2.0",
"author": "Marc Juchli <marc.juchli@digitalasset.com>",
"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"
}
},
"scripts": {
"build": "tsdown --onSuccess \"tsc\" && tsc -b tsconfig.migrations.json",
"dev": "tsdown --watch --onSuccess \"tsc -p tsconfig.types.json && tsc -b tsconfig.migrations.json\"",
"flatpack": "yarn pack --out \"$FLATPACK_OUTDIR\"",
"clean": "tsc -b --clean; rm -rf dist",
"test": "vitest run --project node",
"test:coverage": "vitest run --project node --coverage",
"test:migrations": "vitest run --project migrations",
"migrations:check-lock": "tsx ../../scripts/src/check-migration-lock.ts",
"migrations:update-lock": "tsx ../../scripts/src/check-migration-lock.ts --update"
},
"dependencies": {
"@canton-network/core-ledger-client": "workspace:^",
"@canton-network/core-rpc-errors": "workspace:^",
"@canton-network/core-types": "workspace:^",
"@canton-network/core-wallet-auth": "workspace:^",
"@canton-network/core-wallet-store": "workspace:^",
"better-sqlite3": "^12.11.1",
"commander": "^14.0.3",
"kysely": "^0.28.17",
"pg": "^8.22.0",
"pino": "^10.3.1",
"umzug": "^3.8.3",
"zod": "^4.4.3"
},
"devDependencies": {
"@testcontainers/postgresql": "^11.14.0",
"@types/better-sqlite3": "^7.6.13",
"@types/pg": "^8.20.0",
"@vitest/coverage-v8": "^4.1.10",
"pino-test": "^1.1.0",
"tsdown": "^0.22.9",
"tsx": "^4.23.0",
"typescript": "^5.9.3",
"vitest": "^4.1.10"
},
"files": [
"dist/**"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/canton-network/wallet.git",
"directory": "core/wallet-store-sql"
},
"homepage": "https://github.com/canton-network/wallet/tree/main/core/wallet-store-sql#readme",
"bugs": {
"url": "https://github.com/canton-network/wallet/issues"
}
}