-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.57 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.57 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
{
"name": "@canton-network/core-daml-codegen-helpers",
"version": "1.0.0",
"type": "module",
"description": "Helpers for combining Daml codegen TypeScript output with the Splice Wallet SDK.",
"license": "Apache-2.0",
"author": "Phillip Olesen <phillip.olesen@digitalasset.com>",
"packageManager": "yarn@4.9.4",
"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 && tsc -p tsconfig.types.json",
"dev": "tsup --watch --onSuccess \"tsc -p tsconfig.types.json\"",
"clean": "tsc -b --clean; rm -rf dist",
"flatpack": "yarn pack --out \"$FLATPACK_OUTDIR\"",
"test": "vitest run --project node --project browser --passWithNoTests",
"test:coverage": "vitest run --project node --project browser --coverage --passWithNoTests"
},
"devDependencies": {
"@types/node": "^25.0.10",
"@vitest/browser-playwright": "^4.1.2",
"@vitest/coverage-v8": "^4.1.2",
"tsup": "^8.5.1",
"typescript": "^5.9.3",
"vitest": "^4.1.2"
},
"files": [
"dist/**"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hyperledger-labs/splice-wallet-kernel.git",
"directory": "core/daml-codegen-helpers"
}
}