forked from Invoice-Liquidity-Network/ILN-Smart-Contract
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.51 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.51 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
{
"name": "@iln/sdk",
"version": "0.1.0",
"description": "TypeScript SDK for the Invoice Liquidity Network smart contracts",
"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"
}
},
"type": "module",
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"test": "vitest run --coverage",
"test:ci": "vitest run --coverage",
"test:integration": "vitest run --config vitest.config.ts",
"lint": "eslint src",
"typecheck": "tsc --noEmit",
"clean": "rm -rf dist coverage node_modules/.cache",
"docs": "typedoc --out docs src/index.ts",
"size": "pnpm run build && size-limit"
},
"size-limit": [
{
"name": "ESM bundle",
"path": "dist/index.mjs",
"limit": "50 KB",
"import": "@size-limit/file"
},
{
"name": "CJS bundle",
"path": "dist/index.js",
"limit": "60 KB",
"import": "@size-limit/file"
}
],
"dependencies": {
"@invoice-liquidity/types": "workspace:*",
"@stellar/stellar-sdk": "^12.3.0"
},
"devDependencies": {
"@iln/test-utils": "workspace:*",
"@types/node": "^20.0.0",
"@vitest/coverage-v8": "^1.6.1",
"fast-check": "^3.15.0",
"@size-limit/file": "^11.1.6",
"git-cliff": "^2.2.1",
"size-limit": "^11.1.6",
"tsup": "^8.0.2",
"typedoc": "^0.25.12",
"typescript": "^5.4.0",
"vitest": "^1.6.1"
}
}