-
Notifications
You must be signed in to change notification settings - Fork 41
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.79 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.79 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
{
"name": "@canton-network/core-wallet-auth",
"version": "1.7.0",
"type": "module",
"description": "Provides authentication middleware and user management for the Wallet Gateway",
"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": "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 --project browser",
"test:coverage": "vitest run --project node --project browser --coverage"
},
"devDependencies": {
"@vitest/browser-playwright": "^4.1.8",
"@vitest/coverage-v8": "^4.1.8",
"playwright": "^1.60.0",
"tsup": "^8.5.1",
"typescript": "^5.9.3",
"vitest": "^4.1.8"
},
"dependencies": {
"@canton-network/core-rpc-errors": "workspace:^",
"@canton-network/core-types": "workspace:^",
"jose": "^6.2.3",
"zod": "^4.4.3"
},
"files": [
"dist/**"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/canton-network/wallet.git",
"directory": "core/wallet-auth"
},
"homepage": "https://github.com/canton-network/wallet/tree/main/core/wallet-auth#readme",
"bugs": {
"url": "https://github.com/canton-network/wallet/issues"
}
}