-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 823 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 823 Bytes
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
{
"name": "workspace",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"preinstall": "sh -c 'rm -f package-lock.json yarn.lock; case \"$npm_config_user_agent\" in pnpm/*) ;; *) echo \"Use pnpm instead\" >&2; exit 1 ;; esac'",
"build": "pnpm run typecheck && pnpm -r --if-present run build",
"typecheck:libs": "tsc --build",
"typecheck": "pnpm run typecheck:libs && pnpm -r --filter \"./artifacts/**\" --filter \"./scripts\" --if-present run typecheck"
},
"private": true,
"devDependencies": {
"prettier": "^3.8.1",
"typescript": "~5.9.2"
},
"dependencies": {
"@octokit/rest": "^22.0.1",
"libsodium-wrappers": "^0.8.4",
"sharp": "^0.34.5",
"tweetsodium": "^0.0.6"
},
"pnpm": {
"overrides": {
"@walletconnect/ethereum-provider": "2.21.1"
}
}
}