forked from anza-xyz/wallet-adapter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 2.64 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
{
"private": true,
"name": "@solana/wallet-adapter",
"author": "Solana Maintainers <[email protected]>",
"repository": "https://github.com/solana-labs/wallet-adapter",
"license": "Apache-2.0",
"type": "module",
"sideEffects": false,
"engines": {
"node": ">=16",
"pnpm": ">=7"
},
"scripts": {
"nuke": "shx rm -rf packages/*/*/node_modules node_modules pnpm-lock.yaml || true",
"reinstall": "pnpm run nuke && pnpm install",
"clean": "pnpm --recursive run clean && shx rm -rf **/*.tsbuildinfo",
"ts": "pnpm run build:ts",
"build": "pnpm run build:ts && pnpm run build:other",
"build:ts": "tsc --build --verbose tsconfig.all.json",
"build:other": "pnpm --recursive run build",
"package": "pnpm --recursive run package",
"release": "pnpm run clean && pnpm run build:ts && pnpm run package && pnpm run build:other",
"watch": "pnpm run watch:ts",
"watch:ts": "tsc --build --verbose --watch tsconfig.all.json",
"fmt": "prettier --write '{*,**/*}.{ts,tsx,js,jsx,json}'",
"lint": "prettier --check '{*,**/*}.{ts,tsx,js,jsx,json}' && eslint .",
"lint:fix": "pnpm run fmt && eslint --fix .",
"test": "pnpm --recursive run test",
"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": {
"@types/node": "^18.6.4",
"@typescript-eslint/eslint-plugin": "^5.32.0",
"@typescript-eslint/parser": "^5.32.0",
"eslint": "^8.20.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-require-extensions": "^0.1.1",
"gh-pages": "^4.0.0",
"pnpm": "^7.8.0",
"prettier": "^2.7.1",
"shx": "^0.3.4",
"typedoc": "^0.23.10",
"typescript": "^4.7.4"
},
"overrides": {
"@ledgerhq/devices": "6.27.1",
"@ledgerhq/hw-transport": "6.27.1",
"@ledgerhq/hw-transport-webhid": "6.27.1"
},
"resolutions": {
"@ledgerhq/devices": "6.27.1",
"@ledgerhq/hw-transport": "6.27.1",
"@ledgerhq/hw-transport-webhid": "6.27.1"
}
}