forked from 0xMiden/wallet-adapter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.28 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.28 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
{
"name": "miden-wallet-adapter",
"private": true,
"workspaces": [
"packages/core/base",
"packages/core/react",
"packages/ui",
"packages/wallets/miden",
"packages/all",
"examples/react-signer",
"examples/discover-miden"
],
"packageManager": "yarn@4.9.3",
"scripts": {
"build": "yarn workspaces foreach --all --topological-dev run build",
"build:all": "yarn workspaces foreach --all --parallel run build",
"clean": "yarn workspaces foreach --all run clean",
"clean:all": "yarn workspaces foreach --all run clean && rimraf node_modules",
"doc": "yarn workspaces foreach --all run doc",
"lint": "yarn workspaces foreach --all run lint",
"typecheck": "yarn workspaces foreach --all run typecheck",
"test": "yarn workspaces foreach --all run test",
"reset": "yarn clean:all && yarn install",
"publish:dry": "node util/publish.js --dry-run",
"publish": "node util/publish.js"
},
"devDependencies": {
"@miden-sdk/miden-sdk": "0.13.0",
"@types/node": "^22.13.5",
"@types/react": "^19.0.10",
"@types/react-dom": "^19.0.4",
"rimraf": "^6.0.1",
"typedoc": "^0.28.0",
"typedoc-plugin-markdown": "^4.4.1",
"typescript": "^5.7.2"
},
"peerDependencies": {
"@miden-sdk/miden-sdk": "0.13.0"
}
}