-
Notifications
You must be signed in to change notification settings - Fork 89
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.67 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.67 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
51
52
53
54
55
56
57
58
{
"name": "@mysten/ts-sdks",
"private": true,
"license": "Apache-2.0",
"scripts": {
"test": "turbo run test",
"test:e2e": "turbo run test:e2e --concurrency=1",
"changeset-version": "pnpm changeset version && pnpm --filter @mysten/* codegen:version",
"prettier:check": "prettier -c --ignore-unknown .",
"prettier:fix": "prettier -w --ignore-unknown .",
"prettier:fix:watch": "onchange '**' -i -f add -f change -j 5 -- prettier -w --ignore-unknown {{file}}",
"oxlint:check": "oxlint .",
"oxlint:fix": "oxlint --fix .",
"lint": "pnpm run oxlint:check && pnpm run prettier:check",
"lint:fix": "pnpm run oxlint:fix && pnpm run prettier:fix",
"build": "turbo run build",
"release": "pnpm turbo run build --filter \"./packages/*\" && pnpm changeset publish"
},
"packageManager": "pnpm@10.33.0",
"pnpm": {
"overrides": {
"axios": "^1.15.0",
"lodash": ">=4.18.0",
"hono": ">=4.12.18",
"postcss": ">=8.5.10",
"protobufjs": ">=7.5.5",
"vm2": "3.11.2"
}
},
"engines": {
"pnpm": ">=10.33.0"
},
"manypkg": {
"ignoredRules": [
"INTERNAL_MISMATCH",
"ROOT_HAS_DEV_DEPENDENCIES",
"INVALID_DEV_AND_PEER_DEPENDENCY_RELATIONSHIP"
]
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.18.1",
"@changesets/cli": "^2.29.8",
"@ianvs/prettier-plugin-sort-imports": "^4.7.0",
"@manypkg/cli": "^0.25.1",
"@testcontainers/postgresql": "^11.11.0",
"concurrently": "^9.2.1",
"graphql-config": "^5.1.5",
"oxlint": "1.47.0",
"oxlint-tsgolint": "^0.11.0",
"prettier": "^3.7.4",
"prettier-plugin-tailwindcss": "^0.7.2",
"testcontainers": "^11.11.0",
"tsdown": "0.20.0-beta.1",
"tsx": "^4.21.0",
"turbo": "^2.7.4",
"typescript": "^5.9.3"
}
}