-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 3.5 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 3.5 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
{
"name": "@open-captable-protocol/canton",
"version": "0.2.290",
"description": "A TypeScript SDK for interacting with the Open CapTable Protocol (OCP) Factory contract on Canton blockchain",
"repository": {
"type": "git",
"url": "https://github.com/Fairmint/ocp-canton-sdk.git"
},
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc && npm run copy-ocf-schemas",
"clean": "rm -rf dist",
"copy-ocf-schemas": "ts-node --project tsconfig.tests.json scripts/copy-ocf-schemas.ts",
"dev": "tsc --watch",
"docs": "typedoc",
"docs:clean": "rm -rf docs",
"fix": "npm run lint:fix && npm run format:fix",
"flatten-schemas": "ts-node --project tsconfig.tests.json scripts/flatten-ocf-schemas.ts",
"format": "prettier --check .",
"format:fix": "prettier --write .",
"lint": "eslint . --max-warnings=0",
"lint:fix": "eslint . --fix --max-warnings=0",
"localnet:setup": "bash scripts/localnet/localnet-cloud.sh setup",
"localnet:smoke": "bash scripts/localnet/localnet-cloud.sh smoke",
"localnet:start": "bash scripts/localnet/localnet-cloud.sh start",
"localnet:status": "bash scripts/localnet/localnet-cloud.sh status",
"localnet:stop": "bash scripts/localnet/localnet-cloud.sh stop",
"localnet:test": "bash scripts/localnet/localnet-cloud.sh test",
"localnet:verify": "bash scripts/localnet/localnet-cloud.sh verify",
"prepare-release": "ts-node --project tsconfig.tests.json scripts/prepare-release.ts",
"script:authorize": "ts-node --project tsconfig.tests.json scripts/authorizeIssuer.ts",
"script:create-issuer": "ts-node --project tsconfig.tests.json scripts/createIssuer.ts",
"script:get-issuer-ocf": "ts-node --project tsconfig.tests.json scripts/getIssuerAsOcf.ts",
"test": "npm run -s typecheck && jest --passWithNoTests",
"test:ci": "npm run -s typecheck && jest --runInBand",
"test:coverage": "jest --coverage --passWithNoTests",
"test:integration": "npm run -s typecheck && jest -c jest.integration.config.js --passWithNoTests",
"test:integration:ci": "npm run -s typecheck && jest -c jest.integration.config.js --runInBand",
"test:watch": "jest --watch",
"typecheck": "tsc -p tsconfig.tests.json --noEmit"
},
"dependencies": {
"@daml/ledger": "2.10.4",
"@daml/types": "3.4.11",
"ajv": "8.18.0",
"ajv-formats": "3.0.1",
"zod": "4.3.6"
},
"devDependencies": {
"@apidevtools/json-schema-ref-parser": "15.3.5",
"@eslint/eslintrc": "3.3.5",
"@fairmint/canton-node-sdk": "0.0.197",
"@fairmint/open-captable-protocol-daml-js": "0.2.160",
"@types/jest": "30.0.0",
"@types/jsonwebtoken": "9.0.10",
"@types/node": "25.5.2",
"@typescript-eslint/eslint-plugin": "8.58.1",
"@typescript-eslint/parser": "8.58.1",
"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-unused-imports": "4.4.1",
"fast-check": "4.6.0",
"jest": "30.3.0",
"jsonwebtoken": "9.0.3",
"prettier": "3.8.1",
"prettier-plugin-organize-imports": "4.3.0",
"prettier-plugin-packagejson": "3.0.2",
"ts-jest": "29.4.9",
"ts-node": "10.9.2",
"typedoc": "0.28.18",
"typescript": "5.9.3"
},
"peerDependencies": {
"@fairmint/canton-node-sdk": ">=0.0.195 <0.1.0",
"@fairmint/open-captable-protocol-daml-js": ">=0.2.160 <0.3.0"
},
"publishConfig": {
"access": "public"
}
}