-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.06 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
{
"name": "@ts-rename-all/cli",
"description": "Once rename a file name, then symbols are also renamed.",
"version": "0.11.5",
"license": "MIT",
"keywords": [
"cli",
"refactor",
"typescript"
],
"type": "module",
"files": [
"dist"
],
"bin": {
"ts-rename-all": "./dist/cli.js"
},
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"dev": "tsx src/cli.ts",
"build": "tsup",
"lint": "eslint src --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@clack/prompts": "^0.7.0",
"@ts-rename-all/core": "workspace:*",
"@ts-rename-all/shared": "workspace:*",
"cleye": "^1.3.2",
"picocolors": "^1.0.0"
},
"devDependencies": {
"@types/node": "^20.5.4",
"tsup": "^7.2.0",
"tsx": "^3.12.7",
"typescript": "^5.1.6"
},
"repository": {
"type": "git",
"url": "https://github.com/bisquit/ts-rename-all.git",
"directory": "packages/cli"
},
"bugs": {
"url": "https://github.com/bisquit/ts-rename-all/issues"
}
}