-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
40 lines (40 loc) · 1.03 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
{
"name": "@line/ts-remove-unused",
"version": "0.2.0",
"description": "Remove unused code from your TypeScript project",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/line/ts-remove-unused"
},
"license": "Apache-2.0",
"bin": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"lint": "eslint . --ext .ts,.cjs,.js",
"build": "rm -rf dist && tsc --outDir dist",
"type-check": "tsc --noEmit",
"prepublishOnly": "npm run build",
"test": "glob -c 'node --loader ts-node/esm --test' 'src/**/*.test.ts'"
},
"devDependencies": {
"@types/node": "^20.6.3",
"@typescript-eslint/eslint-plugin": "^6.4.1",
"@typescript-eslint/parser": "^6.4.1",
"eslint": "^8.48.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"glob": "^10.3.5",
"prettier": "^3.0.2",
"ts-node": "^10.9.1"
},
"dependencies": {
"cac": "^6.7.14",
"ts-morph": "^17.0.1"
},
"peerDependencies": {
"typescript": ">=4.0.0"
}
}