forked from base/account-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 983 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 983 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
28
{
"name": "account-sdk",
"version": "0.0.1",
"repository": "https://github.com/base/account-sdk",
"author": "Base",
"license": "MIT",
"private": true,
"workspaces": [
"packages/*",
"libs/*",
"examples/*"
],
"scripts": {
"build:packages": "yarn workspace @base-org/account build && yarn workspace @base-org/account-ui build",
"clean": "yarn workspaces foreach -A -ipv run clean && rm -rf node_modules && yarn",
"deploy": "yarn build:packages && yarn workspace sdk-playground export",
"dev": "yarn workspaces foreach -A -ipv run dev",
"lint": "yarn workspaces foreach -A -pt run lint",
"format": "yarn workspaces foreach -A -pt run format",
"format:check": "yarn workspaces foreach -A -pt run format:check",
"test": "yarn workspaces foreach -A -ipv run test",
"typecheck": "yarn workspaces foreach -A -pt run typecheck"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4"
},
"packageManager": "yarn@4.8.1"
}