-
Notifications
You must be signed in to change notification settings - Fork 93
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.72 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 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
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.18.0",
"esbuild@>=0.27.3 <0.28.1": "0.28.1",
"js-yaml@>=4.0.0 <4.3.0": "4.3.0",
"postcss": ">=8.5.10",
"shell-quote@>=1.0.0 <1.9.0": "1.9.0",
"ws@>=8.0.0": ">=8.21.0"
}
},
"engines": {
"pnpm": ">=10.33.0"
},
"manypkg": {
"ignoredRules": [
"INTERNAL_MISMATCH",
"ROOT_HAS_DEV_DEPENDENCIES",
"INVALID_DEV_AND_PEER_DEPENDENCY_RELATIONSHIP"
]
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.18.3",
"@changesets/cli": "^2.31.0",
"@ianvs/prettier-plugin-sort-imports": "^4.7.0",
"@manypkg/cli": "^0.25.1",
"@testcontainers/postgresql": "^12.0.2",
"concurrently": "^10.0.3",
"graphql-config": "^5.1.5",
"oxlint": "1.47.0",
"oxlint-tsgolint": "^0.23.0",
"prettier": "^3.8.4",
"prettier-plugin-tailwindcss": "^0.8.0",
"testcontainers": "^12.0.2",
"tsdown": "0.22.2",
"tsx": "^4.22.4",
"turbo": "^2.9.18",
"typescript": "^6.0.3"
}
}