-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.06 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.06 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
{
"name": "tanstack-codemods",
"version": "0.1.0",
"private": true,
"description": "Codemods for TanStack",
"type": "module",
"scripts": {
"format": "oxfmt .",
"format:check": "oxfmt --check .",
"lint": "oxlint --type-aware --type-check --deny-warnings .",
"lint:fix": "oxlint --type-aware --type-check --fix .",
"test": "pnpm --filter \"./codemods/*\" test",
"check-types": "pnpm --filter \"./codemods/*\" run check-types",
"ci": "pnpm run test && pnpm run check-types",
"docs:links": "markdown-link-check README.md CONTRIBUTING.md",
"changeset": "changeset",
"version-packages": "changeset version && bash scripts/sync-codemod-versions.sh",
"prepare": "husky"
},
"devDependencies": {
"@changesets/cli": "^2.27.12",
"codemod": "^1.11.0",
"husky": "^9.1.7",
"lint-staged": "^17.0.4",
"markdown-link-check": "^3.13.6",
"oxfmt": "^0.49.0",
"oxlint": "^1.66.0",
"oxlint-tsgolint": "^0.22.1",
"typescript": "^5.8.3"
},
"engines": {
"node": ">=20"
},
"packageManager": "pnpm@10.19.0"
}