-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.8 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.8 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
59
60
61
62
63
{
"name": "@sweeinc/platform",
"version": "0.1.0",
"private": true,
"description": "Swee Inc public TS SDK monorepo — release vault for mature, audited code",
"author": "Swee Inc",
"license": "Apache-2.0",
"type": "module",
"homepage": "https://github.com/sweeinc/platform",
"bugs": {
"url": "https://github.com/sweeinc/platform/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/sweeinc/platform.git"
},
"scripts": {
"build": "turbo run build",
"test": "turbo run test",
"test:live": "turbo run test:live",
"typecheck": "turbo run typecheck",
"lint": "pnpm run oxlint:check && pnpm run prettier:check",
"lint:fix": "pnpm run oxlint:fix && pnpm run prettier:fix",
"check:boundary": "node scripts/check-boundary.mjs",
"oxlint:check": "oxlint .",
"oxlint:fix": "oxlint --fix .",
"prettier:check": "prettier -c --ignore-unknown .",
"prettier:fix": "prettier -w --ignore-unknown .",
"clean": "turbo run clean && rm -rf node_modules/.cache .turbo",
"changeset": "changeset",
"version": "changeset version",
"release": "pnpm run check:boundary && turbo run build && changeset publish"
},
"engines": {
"node": ">=20",
"pnpm": ">=10"
},
"packageManager": "pnpm@10.33.0",
"pnpm": {
"overrides": {
"@mysten/sui": "^2.6.0",
"tsdown": "^0.21.10"
}
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.18.1",
"@changesets/cli": "^2.29.8",
"@ianvs/prettier-plugin-sort-imports": "^4.7.0",
"@manypkg/cli": "^0.24.0",
"oxlint": "^0.15.0",
"prettier": "^3.5.0",
"tsdown": "^0.21.10",
"turbo": "^2.5.0",
"typescript": "^5.7.0",
"vitest": "^3.0.0"
},
"manypkg": {
"ignoredRules": [
"INTERNAL_MISMATCH",
"ROOT_HAS_DEV_DEPENDENCIES"
]
}
}