-
Notifications
You must be signed in to change notification settings - Fork 50
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.72 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.72 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
{
"name": "sei-js",
"version": "2.0.1",
"private": true,
"license": "MIT",
"workspaces": [
"packages/*"
],
"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 changeset publish --no-git-tag --snapshot --tag internal",
"test": "bun run --filter '*' test",
"test:all": "bun run test",
"test:coverage": "bun test --isolate --coverage --coverage-reporter=lcov packages",
"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",
"publint": "0.3.23",
"typescript": "^5.8.2"
},
"packageManager": "bun@1.3.14"
}