forked from anza-xyz/wallet-adapter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 2.02 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
{
"private": true,
"name": "@solana/wallet-adapter",
"author": "Solana Maintainers <maintainers@solana.foundation>",
"repository": "https://github.com/solana-labs/wallet-adapter",
"license": "Apache-2.0",
"type": "module",
"workspaces": {
"packages": [
"packages/*/*"
]
},
"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=12288 typedoc && shx cp ./{.nojekyll,wallets.png} docs/",
"fmt": "prettier --write '{*,**/*}.{js,ts,jsx,tsx,json,vue}'",
"lint": "eslint --ext .ts . && prettier --check '{*,**/*}.{js,ts,jsx,tsx,json,vue}'",
"lint:fix": "eslint --fix --ext .ts . && yarn fmt",
"nuke": "shx rm -rf {.,packages/*/*}/{node_modules,yarn.lock}"
},
"devDependencies": {
"@babel/eslint-parser": "^7.16.5",
"@types/eslint": "^8.2.1",
"@types/eslint-plugin-prettier": "^3.1.0",
"@types/node": "^17.0.0",
"@types/prettier": "^2.4.2",
"@typescript-eslint/eslint-plugin": "^5.14.0",
"@typescript-eslint/parser": "^5.14.0",
"babel-eslint": "^10.1.0",
"eslint": "^8.11.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-react-app": "^7.0.0",
"eslint-plugin-prettier": "^4.0.0",
"gh-pages": "^3.2.3",
"lerna": "^4.0.0",
"prettier": "^2.5.1",
"shx": "^0.3.3",
"tsc-esm": "^1.0.4",
"tslib": "^2.3.0",
"typedoc": "^0.22.13",
"typescript": "^4.6.2",
"typescript-esm": "^2.0.0"
}
}