-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 3.29 KB
/
Copy pathpackage.json
File metadata and controls
107 lines (107 loc) · 3.29 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
{
"name": "@fairmint/canton-dev-tools",
"version": "0.1.5",
"description": "Shared LocalNet CLI, DAML package tooling, and Canton integration-test helpers for Fairmint",
"keywords": [
"canton",
"localnet",
"daml",
"testing",
"fairmint"
],
"homepage": "https://github.com/Fairmint/canton-dev-tools#readme",
"bugs": {
"url": "https://github.com/Fairmint/canton-dev-tools/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Fairmint/canton-dev-tools.git"
},
"license": "MIT",
"author": "Fairmint",
"config": {
"localnet_protocol_version": "35",
"localnet_quickstart_ref": "2f4edfc17621a7dfb6d44357050c22f4b3914c89",
"localnet_scribe_version": "0.6.14",
"localnet_splice_version": "0.6.14"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"canton-dev-tools": "bin/canton-dev-tools"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./testing": {
"types": "./dist/testing/index.d.ts",
"default": "./dist/testing/index.js"
},
"./daml": {
"types": "./dist/daml/index.d.ts",
"default": "./dist/daml/index.js"
}
},
"files": [
"bin/canton-dev-tools",
"config/default-splice-dars.json",
"scripts/localnet-cloud.sh",
"scripts/install-dpm-sdks.sh",
"dist/**"
],
"scripts": {
"build": "tsc",
"check:package-artifacts": "tsx scripts/check-package-artifacts.ts",
"clean": "rm -rf dist coverage",
"fix": "npm run lint:fix && npm run format:fix",
"format": "prettier --check .",
"format:fix": "prettier --write .",
"lint": "eslint . --max-warnings=0",
"lint:fix": "eslint . --fix --max-warnings=0",
"localnet": "bash ./bin/canton-dev-tools",
"localnet:diagnostics": "npm run -s localnet -- diagnostics",
"localnet:readiness": "npm run -s localnet -- readiness",
"localnet:start": "npm run -s localnet -- start",
"localnet:teardown": "npm run -s localnet -- teardown",
"fixture:dar-lifecycle:build": "bash scripts/build-dar-lifecycle-fixture.sh",
"fixture:splice-test-token-v2:fetch": "tsx scripts/fetch-splice-test-token-v2.ts",
"localnet:cip56-transfer": "CANTON_CIP56_REQUIRE_LOCALNET=1 tsx scripts/run-cip56-transfer-smoke.ts",
"pack:check": "npm run check:package-artifacts",
"prepack": "npm run clean && npm run build",
"prepare": "tsc -p tsconfig.json",
"prepare-release": "tsx scripts/prepare-release.ts",
"prepublishOnly": "npm run prepack",
"test": "npm run -s typecheck && jest",
"test:ci": "npm run -s typecheck && jest --runInBand",
"test:watch": "jest --watch",
"typecheck": "tsc --noEmit"
},
"peerDependencies": {
"@fairmint/canton-node-sdk": ">=0.0.232 <0.1.0"
},
"devDependencies": {
"@fairmint/canton-node-sdk": "0.0.265",
"@types/jest": "30.0.0",
"@types/node": "22.15.29",
"@typescript-eslint/eslint-plugin": "8.62.1",
"@typescript-eslint/parser": "8.62.1",
"eslint": "9.39.2",
"eslint-plugin-unused-imports": "4.4.1",
"jest": "30.4.2",
"prettier": "3.8.4",
"ts-jest": "29.4.11",
"tsx": "4.23.0",
"typescript": "5.9.3"
},
"engines": {
"node": ">=22"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"yaml": "2.9.0"
}
}