forked from anza-xyz/wallet-adapter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.68 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
{
"private": true,
"name": "@solana/wallet-adapter",
"author": "Solana Maintainers <[email protected]>",
"repository": "https://github.com/solana-labs/wallet-adapter",
"license": "Apache-2.0",
"workspaces": [
"packages/*"
],
"engines": {
"node": ">= 10"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"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/example/build --dest example --dotfiles",
"docs": "rm -rf docs && typedoc && cp .nojekyll docs/",
"fmt": "prettier --write '{*,**/*}.{js,ts,jsx,tsx,json}'",
"lint": "eslint . --ext .ts && prettier --check '{*,**/*}.{js,ts,jsx,tsx,json}'",
"lint:fix": "eslint . --ext .ts --fix && prettier --write '{*,**/*}.{js,ts,jsx,tsx,json}'",
"nuke": "rm -rf {.,packages/*}/{node_modules,yarn.lock}"
},
"devDependencies": {
"@types/eslint": "^7.2.13",
"@types/eslint-plugin-prettier": "^3.1.0",
"@types/node": "^16.4.13",
"@types/prettier": "^2.3.1",
"@typescript-eslint/eslint-plugin": "^4.28.0",
"@typescript-eslint/parser": "^4.28.1",
"eslint": "^7.29.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"gh-pages": "^3.2.3",
"lerna": "^4.0.0",
"prettier": "^2.2.1",
"tslib": "^2.3.0",
"typedoc": "^0.21.2",
"typescript": "^4.3.5"
}
}