-
-
Notifications
You must be signed in to change notification settings - Fork 62
/
package.json
61 lines (61 loc) · 1.47 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
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "tsc-alias",
"version": "1.8.10",
"description": "Replace alias paths with relative paths after typescript compilation.",
"main": "dist/index.js",
"files": [
"dist/"
],
"bin": {
"tsc-alias": "dist/bin/index.js"
},
"scripts": {
"prepare": "husky install",
"build:dev": "tsc -w",
"clean": "rimraf dist && tsc && pnpm link -g",
"release:patch": "npm version patch",
"postversion": "git push && git push --tags && npm publish",
"format": "prettier --write \"**/*.{js,ts,json}\"",
"test": "npm run clean && jest"
},
"repository": {
"type": "git",
"url": "https://github.com/justkey007/tsc-alias.git"
},
"keywords": [
"typescript",
"paths",
"alias",
"absolute path",
"relative path",
"compilation",
"tsc"
],
"author": "Juskey B.",
"license": "MIT",
"bugs": {
"url": "https://github.com/justkey007/tsc-alias/issues"
},
"homepage": "https://github.com/justkey007/tsc-alias.git",
"dependencies": {
"chokidar": "^3.5.3",
"commander": "^9.0.0",
"globby": "^11.0.4",
"mylas": "^2.1.9",
"normalize-path": "^3.0.0",
"plimit-lit": "^1.2.6"
},
"devDependencies": {
"@types/jest": "^27.4.0",
"@types/node": "^17.0.18",
"@types/rimraf": "^3.0.2",
"@types/shelljs": "^0.8.11",
"husky": "^7.0.4",
"jest": "^27.5.1",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"shelljs": "^0.8.5",
"ts-jest": "^27.1.3",
"typescript": "^4.5.5"
}
}