-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (108 loc) · 3.91 KB
/
Copy pathpackage.json
File metadata and controls
108 lines (108 loc) · 3.91 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "@fairmint/canton-node-sdk",
"version": "0.0.251",
"description": "Canton Node SDK",
"keywords": [
"canton",
"sdk",
"typescript",
"blockchain",
"daml"
],
"homepage": "https://github.com/Fairmint/canton-node-sdk/wiki",
"bugs": {
"url": "https://github.com/Fairmint/canton-node-sdk/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/Fairmint/canton-node-sdk.git"
},
"license": "MIT",
"author": "Fairmint",
"main": "build/src/index.js",
"types": "build/src/index.d.ts",
"files": [
"build/src/**"
],
"scripts": {
"artifacts:manifest": "mkdir -p artifacts && npm pack --dry-run --json --ignore-scripts > /tmp/npm-pack.json 2>/dev/null && jq -r '.[0].files[].path' /tmp/npm-pack.json | sort | canton-dev-tools collapse-manifest > artifacts/npm-manifest.txt",
"build": "npm run build:core && npm run build:lint",
"build:core": "npm run generate:openapi-types && npm run build:core:generate-client-methods && npm run tsc7",
"build:core:generate-client-methods": "tsx scripts/generate-all-client-methods.ts",
"build:lint": "npm run tsc7 -- -p tsconfig.lint.json",
"check:package-artifacts": "tsx scripts/check-package-artifacts.ts",
"clean": "rm -rf build",
"example:connect": "tsx examples/localnet-with-oauth2.ts",
"fix": "npm run lint:fix && npm run format:fix",
"format": "prettier --check .",
"format:fix": "prettier --write .",
"generate:openapi-types": "tsx scripts/generate-openapi-types.ts",
"grant-user-rights": "tsx scripts/grant-user-rights.ts",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"lint:npm": "npmPkgJsonLint . --fix",
"lint:npm:check": "npmPkgJsonLint .",
"localnet:diagnostics": "canton-dev-tools diagnostics",
"localnet:logs": "canton-dev-tools diagnostics",
"localnet:readiness": "canton-dev-tools readiness",
"localnet:smoke": "canton-dev-tools readiness",
"localnet:start": "canton-dev-tools start",
"localnet:stop": "canton-dev-tools teardown",
"localnet:teardown": "canton-dev-tools teardown",
"localnet:verify": "npm run localnet:start && npm run localnet:readiness && npm run test:localnet",
"prepack": "npm run clean && npm run build:core",
"prepare-release": "canton-dev-tools prepare-release",
"prepublishOnly": "npm run prepack",
"revoke-user-rights": "tsx scripts/revoke-user-rights.ts",
"test": "jest",
"test:integration": "jest test/integration/localnet",
"test:localnet": "npm run test:integration",
"test:regression": "npm run test:integration",
"test:watch": "jest --watch",
"tsc7": "node node_modules/typescript-7/bin/tsc"
},
"dependencies": {
"@hardlydifficult/rest-client": "1.0.65",
"@hardlydifficult/websocket": "1.0.73",
"@stellar/stellar-base": "15.0.0",
"axios": "1.20.0",
"dotenv": "18.0.3",
"glob": "13.0.6",
"openapi-fetch": "0.17.0",
"openapi-typescript": "7.13.0",
"pino": "10.3.1",
"ws": "8.21.3",
"zod": "4.6.5"
},
"devDependencies": {
"@fairmint/canton-dev-tools": "0.1.11",
"@types/jest": "30.0.0",
"@types/node": "26.6.2",
"@types/ws": "8.18.1",
"@typescript-eslint/eslint-plugin": "8.70.1",
"@typescript-eslint/parser": "8.70.1",
"eslint": "9.39.2",
"eslint-config-prettier": "10.1.8",
"eslint-import-resolver-typescript": "4.4.5",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-markdown": "5.1.0",
"eslint-plugin-unused-imports": "4.4.1",
"jest": "30.5.2",
"markdownlint-cli": "0.49.1",
"npm-package-json-lint": "11.0.0",
"prettier": "3.9.8",
"prettier-plugin-jsdoc": "1.8.1",
"prettier-plugin-organize-imports": "4.3.0",
"prettier-plugin-packagejson": "3.0.2",
"ts-jest": "29.4.12",
"tsx": "4.23.15",
"typescript": "5.9.3",
"typescript-7": "npm:typescript@7.0.2"
},
"engines": {
"node": ">=22.0.0"
},
"publishConfig": {
"access": "public"
}
}