forked from anza-xyz/wallet-adapter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.99 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
{
"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",
"workspaces": {
"packages": [
"packages/*/*"
],
"nohoist": [
"**/babel-loader",
"**/babel-loader/**",
"**/webpack",
"**/webpack/**"
]
},
"engines": {
"node": ">= 10"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"clean": "lerna run clean",
"build": "lerna run build",
"test": "lerna run test",
"publish": "lerna publish from-package",
"deploy": "yarn deploy:docs && yarn deploy:example",
"deploy:docs": "yarn docs && gh-pages --dist docs --dotfiles",
"deploy:example": "gh-pages --dist packages/starter/example/out --dest example --dotfiles",
"docs": "shx rm -rf docs && NODE_OPTIONS=--max_old_space_size=8192 typedoc && shx cp ./{.nojekyll,wallets.png,modal_logo.png} docs/",
"fmt": "prettier --write '{*,**/*}.{js,ts,jsx,tsx,json}'",
"lint": "eslint --ext .ts . && prettier --check '{*,**/*}.{js,ts,jsx,tsx,json}'",
"lint:fix": "eslint --fix --ext .ts . && yarn fmt",
"nuke": "shx rm -rf {.,packages/*/*}/{node_modules,yarn.lock}"
},
"devDependencies": {
"@types/eslint": "^7.2.13",
"@types/eslint-plugin-prettier": "^3.1.0",
"@types/node": "^16.9.1",
"@types/prettier": "^2.3.1",
"@typescript-eslint/eslint-plugin": "^4.31.0",
"@typescript-eslint/parser": "^4.31.0",
"eslint": "^7.29.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"gh-pages": "^3.2.3",
"lerna": "^4.0.0",
"prettier": "^2.4.0",
"shx": "^0.3.3",
"tslib": "^2.3.0",
"typedoc": "^0.22.2",
"typescript": "^4.4.3"
}
}