-
Notifications
You must be signed in to change notification settings - Fork 51
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 2.21 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 2.21 KB
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
{
"name": "sei-js",
"version": "2.0.1",
"private": true,
"license": "MIT",
"workspaces": [
"packages/*"
],
"overrides": {
"axios": "1.18.0",
"uuid": "11.1.1"
},
"scripts": {
"build": "bun run --filter '*' build",
"build:all": "bun run build",
"check": "biome check . && bun run typecheck",
"check:fix": "biome check --write .",
"format": "biome format --write .",
"lint": "biome lint .",
"lint:fix": "biome lint --write .",
"lint:pack:all": "bun run lint:pack:publint && bun run lint:pack:types && bun run lint:pack:exports && bun run lint:pack:runtime",
"lint:pack:publint": "sh -c 'for d in packages/*; do [ -f \"$d/package.json\" ] || continue; (cd \"$d\" && bun run publint --pack npm --strict --level warning) || exit 1; done'",
"lint:pack:types": "sh -c 'for d in packages/precompiles packages/registry packages/sei-global-wallet packages/mcp-server; do (cd \"$d\" && bun run attw --pack . --profile esm-only) || exit 1; done'",
"lint:pack:exports": "bun scripts/check-precompile-exports.ts",
"lint:pack:runtime": "bun scripts/check-mcp-cli.ts",
"release": "changeset publish && git push --follow-tags",
"release:internal": "bun run build && bun run changeset && bun run changeset version --snapshot internal && bun run sync-lockfile && bun run changeset publish --no-git-tag --snapshot --tag internal",
"sync-lockfile": "bun install --lockfile-only && bun scripts/sync-workspace-versions.ts",
"version-packages": "changeset version && bun run sync-lockfile",
"test": "bun run --filter '*' test && bun run test:scripts",
"test:all": "bun run test",
"test:coverage": "bun test --isolate --coverage --coverage-reporter=lcov packages",
"test:create-sei-release": "bun run --cwd packages/create-sei test:release",
"test:sei-global-wallet-release": "bun scripts/check-sei-global-wallet.ts",
"test:scripts": "bun test --isolate scripts",
"typecheck": "tsc --project tsconfig.test.json"
},
"devDependencies": {
"@arethetypeswrong/cli": "0.18.5",
"@biomejs/biome": "^2.5.8",
"@changesets/cli": "^2.28.1",
"@types/bun": "^1.3.0",
"@types/node": "^22.13.13",
"esbuild": "^0.28.2",
"jsonc-parser": "^3.3.1",
"publint": "0.3.23",
"typescript": "^5.8.2"
},
"packageManager": "bun@1.3.14"
}