-
Notifications
You must be signed in to change notification settings - Fork 48
/
Copy pathpackage.json
45 lines (45 loc) · 1.05 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
{
"name": "@channel.io/bezier-codemod",
"version": "0.5.0",
"description": "Codemod transformations to help upgrade app using Bezier design system.",
"repository": {
"type": "git",
"url": "https://github.com/channel-io/bezier-react",
"directory": "packages/bezier-codemod"
},
"author": "Channel Corp.",
"license": "Apache-2.0",
"bin": "dist/cli.js",
"type": "module",
"engines": {
"node": ">=16"
},
"scripts": {
"build": "tsc --build --verbose",
"dev": "tsc --watch",
"lint": "TIMING=1 eslint --cache .",
"typecheck": "tsc --noEmit",
"test": "jest",
"clean": "rm -rf dist node_modules .turbo .eslintcache .jestcache"
},
"files": [
"dist"
],
"dependencies": {
"@inkjs/ui": "^2.0.0",
"ink": "^5.1.0",
"meow": "^13.2.0",
"react": "^19.0.0",
"ts-morph": "^24.0.0"
},
"devDependencies": {
"@types/node": "^22.10.2",
"@types/react": "^19.0.1",
"eslint-config-bezier": "workspace:*",
"tsconfig": "workspace:*"
},
"keywords": [
"codemod",
"channel"
]
}