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
31 lines (31 loc) · 757 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 757 Bytes
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
{
"name": "iln-smart-contract",
"version": "0.0.0",
"private": true,
"description": "Invoice Liquidity Network Smart Contracts",
"packageManager": "pnpm@9.0.0",
"engines": {
"node": ">=22.0.0"
},
"scripts": {
"preinstall": "npx only-allow pnpm",
"build": "turbo run build",
"test": "turbo run test",
"lint": "turbo run lint",
"typecheck": "turbo run typecheck",
"test:coverage": "turbo run test:coverage",
"changeset": "changeset",
"changeset:version": "changeset version",
"changeset:publish": "changeset publish"
},
"devDependencies": {
"@changesets/cli": "^2.27.9",
"turbo": "^2.0.0",
"typescript": "^5.4.0",
"vitest": "^1.6.0"
},
"workspaces": [
"sdk",
"cli"
]
}