forked from anza-xyz/wallet-adapter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.93 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"private": true,
"name": "@solana/wallet-adapter",
"author": "Solana Maintainers <maintainers@solana.foundation>",
"repository": "https://github.com/anza-xyz/wallet-adapter",
"license": "Apache-2.0",
"engines": {
"node": ">=18",
"pnpm": ">=9"
},
"type": "module",
"sideEffects": false,
"scripts": {
"nuke": "shx rm -rf packages/*/*/node_modules node_modules pnpm-lock.yaml || true",
"reinstall": "pnpm run nuke && pnpm install",
"clean": "pnpm --recursive --workspace-concurrency=0 run clean && shx rm -rf **/*.tsbuildinfo",
"build": "turbo run build --concurrency=100%",
"build:clean": "pnpm run clean && pnpm run build",
"release": "pnpm run build:clean && pnpm test && changeset publish && git push --follow-tags && git status",
"watch": "tsc --build --verbose --watch tsconfig.all.json",
"fmt": "prettier --write '{*,**/*}.{ts,tsx,js,jsx,json}'",
"lint": "turbo run lint --concurrency=100%",
"lint:fix": "pnpm run fmt && eslint --fix .",
"test": "turbo run test --concurrency=100%",
"deploy": "pnpm run deploy:docs && pnpm run deploy:example",
"docs": "shx rm -rf docs && NODE_OPTIONS=--max_old_space_size=16000 typedoc && shx cp ./{.nojekyll,wallets.png} docs/",
"deploy:docs": "pnpm run docs && gh-pages --dist docs --dotfiles",
"example": "pnpm run --filter {packages/starter/example} export",
"deploy:example": "pnpm run example && gh-pages --dist packages/starter/example/out --dest example --dotfiles"
},
"devDependencies": {
"@changesets/cli": "^2.26.1",
"@types/node": "^18.16.18",
"@typescript-eslint/eslint-plugin": "^5.60.0",
"@typescript-eslint/parser": "^5.60.0",
"eslint": "8.22.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-require-extensions": "^0.1.3",
"gh-pages": "^4.0.0",
"pnpm": "^9",
"prettier": "^2.8.8",
"shx": "^0.3.4",
"turbo": "^1.13.3",
"typedoc": "^0.23.28",
"typescript": "~4.7.4"
},
"overrides": {
"@ledgerhq/devices": "6.27.1",
"@ledgerhq/errors": "6.16.3",
"@ledgerhq/hw-transport": "6.27.1",
"@ledgerhq/hw-transport-webhid": "6.27.1",
"@solana/wallet-adapter-base": "workspace:^",
"@types/web": "npm:typescript@~4.7.4",
"eslint": "8.22.0",
"@ngraveio/bc-ur": "1.1.12"
},
"resolutions": {
"@ledgerhq/devices": "6.27.1",
"@ledgerhq/errors": "6.16.3",
"@ledgerhq/hw-transport": "6.27.1",
"@ledgerhq/hw-transport-webhid": "6.27.1",
"@solana/wallet-adapter-base": "workspace:^",
"@types/web": "npm:typescript@~4.7.4",
"eslint": "8.22.0",
"@ngraveio/bc-ur": "1.1.12"
}
}