-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.83 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.83 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-incubation/ts-sdks-incubation",
"private": true,
"license": "Apache-2.0",
"scripts": {
"test": "turbo run test --filter \"./packages/*\" --filter \"./apps/*\" --concurrency=1",
"test:e2e": "turbo run test:e2e --concurrency=1",
"changeset-version": "pnpm changeset version",
"setup:repos": "bash scripts/setup-repos.sh",
"prettier:check": "prettier -c --ignore-unknown .",
"prettier:fix": "prettier -w --ignore-unknown .",
"oxlint:check": "oxlint --ignore-pattern='repos/**' .",
"oxlint:fix": "oxlint --fix --ignore-pattern='repos/**' .",
"lint": "pnpm run oxlint:check && pnpm run prettier:check",
"lint:fix": "pnpm run oxlint:fix && pnpm run prettier:fix",
"build": "turbo run build --filter \"./packages/*\" --filter \"./apps/*\" --concurrency=1",
"build:examples": "turbo run build --filter \"./examples/*\" --concurrency=1",
"typecheck": "turbo run typecheck --filter \"./packages/*\" --filter \"./apps/*\"",
"release": "pnpm turbo run build --filter \"./packages/*\" && pnpm changeset publish"
},
"packageManager": "pnpm@10.17.0",
"engines": {
"pnpm": ">=10.17.0"
},
"manypkg": {
"ignoredRules": [
"INTERNAL_MISMATCH",
"ROOT_HAS_DEV_DEPENDENCIES",
"INVALID_DEV_AND_PEER_DEPENDENCY_RELATIONSHIP"
]
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild"
],
"overrides": {
"@mysten/sui": "catalog:",
"picomatch": "^4.0.4",
"path-to-regexp": "^8.4.0",
"protobufjs": "7.5.9",
"vite": "^7.3.2"
}
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.18.1",
"@changesets/cli": "^2.29.8",
"@ianvs/prettier-plugin-sort-imports": "^4.7.0",
"@manypkg/cli": "^0.25.1",
"concurrently": "^9.2.1",
"oxlint": "1.39.0",
"prettier": "^3.7.4",
"prettier-plugin-tailwindcss": "^0.7.2",
"tsdown": "^0.21.10",
"tsx": "^4.21.0",
"turbo": "^2.7.4",
"typescript": "^5.9.3"
}
}