forked from codemod/codemod
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.08 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.08 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
{
"name": "@codemod.com/codemod",
"version": "0.0.0-development",
"private": true,
"description": "A monorepo for all the interconnected tools of codemod.com",
"keywords": [
"AST",
"cli",
"codemod",
"jscodeshift",
"migration",
"next.js",
"react",
"refactoring",
"studio",
"transform",
"ts-morph"
],
"repository": {
"type": "git",
"url": "https://github.com/codemod/codemod.git"
},
"author": "Codemod, Inc.",
"license": "Apache License, Version 2.0",
"type": "module",
"scripts": {
"release": "pnpm changeset publish",
"lint": "oxlint",
"lint:fix": "oxlint --fix",
"format:fix": "oxfmt --write",
"format": "oxfmt --check",
"prepare": "husky"
},
"lint-staged": {
"**/*.{js,mjs,cjs,jsx,ts,mts,cts,tsx,vue,astro,svelte}": "oxlint"
},
"devDependencies": {
"@changesets/cli": "^2.29.8",
"husky": "^9.1.7",
"oxfmt": "^0.18.0",
"oxlint": "^1.33.0",
"oxlint-tsgolint": "^0.9.1"
},
"packageManager": "pnpm@10.19.0",
"engines": {
"node": ">=24.x",
"pnpm": ">=10.x"
}
}