forked from wallet-standard/wallet-standard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 1.24 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
{
"private": true,
"author": "Solana Maintainers <[email protected]>",
"repository": "https://github.com/wallet-standard/wallet-standard",
"license": "Apache-2.0",
"engines": {
"node": ">=16",
"pnpm": ">=7"
},
"scripts": {
"clean": "pnpm --recursive run clean",
"build": "pnpm --recursive run prebuild && tsc --build && pnpm --recursive run build",
"watch": "pnpm --recursive run prebuild && tsc --build --watch",
"fmt": "prettier --write '{*,**/*}.{ts,tsx,js,jsx,json}'",
"lint": "prettier --check '{*,**/*}.{ts,tsx,js,jsx,json}' && eslint .",
"lint:fix": "pnpm fmt && eslint --fix .",
"nuke": "shx rm -rf node_modules pnpm-lock.yaml packages/*/*/node_modules packages/*/*/pnpm-lock.yaml || true",
"reinstall": "pnpm nuke && pnpm install"
},
"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",
"pnpm": "^7.8.0",
"prettier": "^2.7.1",
"shx": "^0.3.4",
"typescript": "^4.7.4"
}
}