-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy pathpackage.json
53 lines (53 loc) · 2.35 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
{
"private": true,
"version": "0.0.0",
"author": "Solana Maintainers <maintainers@solana.foundation>",
"repository": "https://github.com/solana-labs/wallet-standard",
"license": "Apache-2.0",
"engines": {
"node": ">=16",
"pnpm": ">=9"
},
"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 && pnpm test && 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.27.11",
"@eslint/compat": "^1.2.5",
"@types/chrome": "^0.0.294",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.6",
"@typescript-eslint/eslint-plugin": "^8.20.0",
"@typescript-eslint/parser": "^8.20.0",
"eslint": "^9.18.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-require-extensions": "^0.1.3",
"gh-pages": "^6.3.0",
"pnpm": "^9.15.4",
"prettier": "^3.4.2",
"shx": "^0.3.4",
"typedoc": "^0.27.6",
"typescript": "^5.7.3"
}
}