-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 3.94 KB
/
package.json
File metadata and controls
104 lines (104 loc) · 3.94 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
{
"name": "@fairmint/canton-node-sdk",
"version": "0.0.196",
"description": "Canton Node SDK",
"keywords": [
"canton",
"sdk",
"typescript",
"blockchain",
"daml"
],
"homepage": "https://sdk.canton.fairmint.com/",
"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",
"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 | tsx scripts/collapse-manifest.ts > 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 && tsc",
"build:core:generate-client-methods": "tsx scripts/generate-all-client-methods.ts",
"build:lint": "tsc -p tsconfig.lint.json",
"clean": "rm -rf build",
"docs": "tsx scripts/update-docs-version.ts && tsx scripts/generate-operation-docs.ts",
"docs:build": "npm run docs && cd docs && bundle exec jekyll build",
"docs:dev": "npm run docs && cd docs && bundle exec jekyll serve --livereload --port 4000",
"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:quickstart": "bash ./scripts/localnet/setup-quickstart-localnet.sh",
"localnet:setup": "bash ./scripts/localnet/setup-localnet.sh",
"localnet:smoke": "bash ./scripts/localnet/localnet-cloud.sh smoke",
"localnet:start": "bash ./scripts/localnet/start-localnet.sh",
"localnet:status": "bash ./scripts/localnet/localnet-status.sh",
"localnet:stop": "bash ./scripts/localnet/stop-localnet.sh",
"localnet:verify": "bash ./scripts/localnet/localnet-cloud.sh verify",
"prepack": "npm run clean && npm run build:core",
"prepare-release": "tsx scripts/prepare-release.ts",
"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"
},
"dependencies": {
"@canton-network/wallet-sdk": "0.21.0",
"@hardlydifficult/rest-client": "1.0.65",
"@hardlydifficult/websocket": "1.0.2",
"@stellar/stellar-base": "14.0.4",
"axios": "1.13.5",
"dotenv": "17.2.4",
"glob": "13.0.1",
"openapi-fetch": "0.16.0",
"openapi-typescript": "7.12.0",
"pino": "10.3.1",
"ws": "8.19.0",
"zod": "4.3.6"
},
"devDependencies": {
"@types/jest": "30.0.0",
"@types/node": "25.2.2",
"@types/ws": "8.18.1",
"@typescript-eslint/eslint-plugin": "8.55.0",
"@typescript-eslint/parser": "8.55.0",
"eslint": "9.39.2",
"eslint-config-prettier": "10.1.8",
"eslint-import-resolver-typescript": "4.4.4",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-markdown": "5.1.0",
"eslint-plugin-unused-imports": "4.4.1",
"jest": "30.2.0",
"markdownlint-cli": "0.47.0",
"npm-package-json-lint": "9.1.0",
"prettier": "3.8.1",
"prettier-plugin-jsdoc": "1.8.0",
"prettier-plugin-organize-imports": "4.3.0",
"prettier-plugin-packagejson": "3.0.0",
"ts-jest": "29.4.6",
"tsx": "4.21.0",
"typescript": "5.9.3"
},
"engines": {
"node": ">=18.0.0"
},
"publishConfig": {
"access": "public"
}
}