-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
68 lines (68 loc) · 2.74 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
{
"private": true,
"version": "0.0.0",
"author": "Exodus Maintainers <[email protected]>",
"repository": "https://github.com/ExodusMovement/bitcoin-wallet-standard",
"license": "Apache-2.0",
"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 --workspace-concurrency=0 run clean",
"build": "pnpm run build:ts && pnpm run build:package && pnpm run build:other",
"ts": "pnpm run build:ts",
"build:ts": "tsc --build --verbose tsconfig.all.json",
"build:package": "pnpm --recursive --workspace-concurrency=0 run package",
"build:other": "pnpm --recursive --workspace-concurrency=0 run build",
"build:clean": "pnpm run clean && pnpm run build",
"release": "pnpm run build:clean && changeset publish && git push --follow-tags && git status",
"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 --workspace-concurrency=0 run test",
"deploy": "pnpm run deploy:docs",
"docs": "shx rm -rf docs && NODE_OPTIONS=--max_old_space_size=16000 typedoc && shx cp .nojekyll docs/",
"deploy:docs": "pnpm run docs && gh-pages --dist docs --dotfiles"
},
"devDependencies": {
"@changesets/cli": "^2.25.0",
"@types/chrome": "^0.0.195",
"@types/node": "^18.11.5",
"@typescript-eslint/eslint-plugin": "^5.41.0",
"@typescript-eslint/parser": "^5.41.0",
"buffer": "^5.5.0",
"eslint": "8.22.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.10",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-require-extensions": "^0.1.1",
"events": "^3.1.0",
"gh-pages": "^4.0.0",
"https-browserify": "^1.0.0",
"pnpm": "^7.14.0",
"prettier": "^2.7.1",
"prettier-plugin-tailwindcss": "^0.3.0",
"process": "^0.11.10",
"punycode": "^1.4.1",
"shx": "^0.3.4",
"stream-browserify": "^3.0.0",
"stream-http": "^3.1.0",
"string_decoder": "^1.3.0",
"typedoc": "^0.23.18",
"typescript": "~4.7.4",
"url": "^0.11.0",
"util": "^0.12.3"
},
"resolutions": {
"eslint": "8.22.0"
},
"overrides": {
"eslint": "8.22.0"
}
}