forked from palantir/osdk-ts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 2.21 KB
/
package.json
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
64
65
66
67
68
{
"name": "workspace-root",
"private": true,
"scripts": {
"build": "turbo run build",
"check": "turbo check",
"check-mrl": "mrl check --verbose",
"ci:publish": "./scripts/ci-publish.sh",
"ci:publishSnapshot": "pnpm run prePublish && pnpm exec changeset version --snapshot && pnpm exec changeset publish --no-git-tag --snapshot --tag=next",
"dev": "npx tsx packages/watch/src/watch.mts",
"dev:typecheck": "npx tsx packages/watch/src/watch.mts",
"lint": "turbo run lint",
"postVersionCmd": "turbo run postVersioning && turbo codegen",
"prePublish": "turbo build && turbo lint",
"prepare": "husky install",
"test": "FORCE_COLOR=1 turbo run test",
"test:watch": "FORCE_COLOR=1 turbo run test:watch",
"typecheckAll": "tsc --build packages/* examples-extra/basic/*"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.15.3",
"@babel/core": "^7.24.5",
"@babel/preset-typescript": "^7.24.1",
"@changesets/changelog-git": "^0.2.0",
"@changesets/cli": "^2.27.3",
"@monorepolint/cli": "0.5.0-alpha.137",
"@monorepolint/config": "0.5.0-alpha.137",
"@monorepolint/core": "0.5.0-alpha.137",
"@monorepolint/rules": "0.5.0-alpha.137",
"@types/lint-staged": "^13.3.0",
"@typescript-eslint/parser": "^7.9.0",
"babel-plugin-dev-expression": "^0.2.3",
"dprint": "^0.45.1",
"esbuild-plugin-babel": "^0.2.3",
"eslint": "^9.3.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-header": "^3.1.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-unused-imports": "^3.2.0",
"find-up-cli": "^6.0.0",
"globals": "^15.3.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"micromatch": "^4.0.5",
"mytsup": "workspace:^",
"tsc-absolute": "^1.0.1",
"tsconfig": "workspace:^",
"tsup": "^8.0.2",
"turbo": "^1.13.2",
"turbotree": "^1.0.1",
"typescript": "^5.4.5",
"typescript-eslint": "^7.9.0",
"vitest": "^1.6.0"
},
"pnpm": {
"patchedDependencies": {
"[email protected]": "patches/[email protected]"
},
"overrides": {
"[email protected]": "0.0.3"
}
},
"engines": {
"node": ">=16",
"pnpm": ">=8.7.4"
},
"packageManager": "[email protected]"
}