-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.47 KB
/
package.json
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
{
"name": "wallet-adapter",
"version": "0.1.2",
"description": "Modular wallet adapters and components for Mina Protocol zkApps",
"author": "t4top",
"license": "Apache-2.0",
"type": "module",
"private": "true",
"publishConfig": {
"access": "public"
},
"workspaces": [
"packages/core",
"packages/wallets/adapters/*",
"packages/wallets",
"packages/ui",
"packages/ui/*",
"packages/starter/**/*",
"site"
],
"scripts": {
"dev": "npm run dev --workspaces --if-present",
"build": "npm run build --workspaces --if-present",
"preview": "npm run start --workspace site",
"test": "npm run test --workspaces --if-present",
"lint": "npm run lint --workspaces --if-present",
"clean": "npm run clean --workspaces --if-present",
"prepublishOnly": "npm run clean && npm run build",
"publish": "npm publish --workspaces",
"pretypedoc": "shx rm -rf typedoc",
"typedoc": "npm run typedoc --workspaces --if-present && typedoc",
"format": "prettier --write ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/mina-wallet-adapter/wallet-adapter.git"
},
"bugs": {
"url": "https://github.com/mina-wallet-adapter/wallet-adapter/issues"
},
"homepage": "https://github.com/mina-wallet-adapter/wallet-adapter#readme",
"keywords": [
"mina",
"wallet",
"adapter",
"zkApp"
],
"devDependencies": {
"prettier": "^3.0.3",
"shx": "^0.3.4",
"typedoc": "^0.25.9"
}
}