-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 1.04 KB
/
package.json
File metadata and controls
29 lines (29 loc) · 1.04 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
{
"name": "ts-dev-scripts",
"version": "1.0.0",
"description": "AST (Abstract Syntax Tree) transformation scripts to automate tedious tasks in large TypeScript codebases",
"main": "dist/index.js",
"scripts": {
"find:console": "ts-node ./scripts/no-console.ts --glob='./(src|apps|libs)/**/!(*.test|*.spec).(ts|tsx)'",
"find:unused-exports": "ts-node ./scripts/no-unused-exports.ts --glob='./(src|apps|libs|test)/**/*.(ts|tsx)'",
"remove:console": "ts-node ./scripts/no-console.ts --glob='./(src|apps|libs)/**/!(*.test|*.spec).(ts|tsx)' --fix",
"remove:unused-exports": "ts-node ./scripts/no-unused-exports.ts --glob='./(src|apps|libs|test)/**/*.(ts|tsx)' --fix"
},
"keywords": [
"typescript",
"ts-morph",
"AST transformation scripts",
"Abstract Syntax Tree transformation scripts",
"codemods",
"developer",
"tools"
],
"author": "Arthur Welf",
"license": "ISC",
"devDependencies": {
"@biomejs/biome": "^1.8.3",
"ts-morph": "^23.0.0",
"ts-node": "^10.9.2",
"typescript": "^5.5.3"
}
}