-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 2.09 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 2.09 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
{
"name": "@meshsdk/midnight-root",
"private": true,
"scripts": {
"build": "turbo run build:mesh && turbo run build:apps",
"build:apps": "turbo run build:apps",
"build:mesh": "turbo run build:mesh",
"clean": "rm -rf node_modules && rm -rf dist && rm -rf .turbo && rm -rf .next && rm -rf package-lock.json",
"clean:packages": "turbo run clean --filter=@meshsdk/*",
"prepack:packages": "turbo run prepack:all --filter=@meshsdk/*",
"dev": "turbo run dev",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"check-types": "turbo run check-types",
"sh:version": "bash scripts/bump-version.sh"
},
"dependencies": {
"@bitcoin-js/tiny-secp256k1-asmjs": "^2.2.4",
"@midnight-ntwrk/compact-runtime": "0.8.1",
"@midnight-ntwrk/dapp-connector-api": "3.0.0",
"@midnight-ntwrk/ledger": "4.0.0",
"@midnight-ntwrk/midnight-js-contracts": "2.0.2",
"@midnight-ntwrk/midnight-js-fetch-zk-config-provider": "2.0.2",
"@midnight-ntwrk/midnight-js-http-client-proof-provider": "2.0.2",
"@midnight-ntwrk/midnight-js-indexer-public-data-provider": "2.0.2",
"@midnight-ntwrk/midnight-js-level-private-state-provider": "2.0.2",
"@midnight-ntwrk/midnight-js-node-zk-config-provider": "2.0.2",
"@midnight-ntwrk/midnight-js-types": "2.0.2",
"@midnight-ntwrk/wallet": "5.0.0",
"@midnight-ntwrk/wallet-api": "5.0.0",
"@midnight-ntwrk/wallet-sdk-hd": "^2.0.0",
"@midnight-ntwrk/zswap": "4.0.0",
"@scure/bip32": "^1.7.0",
"@scure/bip39": "^1.6.0",
"bip32": "^5.0.0-rc.0",
"bip39": "^3.1.0",
"fp-ts": "^2.16.1",
"io-ts": "^2.2.20",
"mermaid": "^11.10.1",
"pino": "^8.16.0",
"pino-pretty": "^10.2.3",
"punycode": "^2.3.1",
"rxjs": "^7.8.1",
"ts-node": "^10.9.2"
},
"devDependencies": {
"is-path-inside": "^4.0.0",
"prettier": "^3.5.3",
"text-table": "^0.2.0",
"turbo": "^2.4.4",
"typescript": "5.8.2"
},
"engines": {
"node": ">=18"
},
"packageManager": "npm@10.9.2",
"workspaces": [
"apps/*",
"apps/playground/*",
"packages/*"
]
}