-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.78 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
{
"name": "relative-to-alias-resolver",
"version": "1.1.4",
"description": "Transform your TypeScript project with ease using the relative-to-alias-resolver. This powerful tool converts cumbersome relative imports into clean, maintainable alias imports, enhancing code readability and maintainability.",
"main": "dist/cjs/index.cjs",
"module": "dist/esm/index.js",
"type": "module",
"bin": {
"relative-to-alias-resolver": "./bin/relative-to-alias-resolver"
},
"scripts": {
"test": "mocha --config .mocharc.json --reporter=spec",
"test:coverage": "c8 mocha --config .mocharc.json --reporter=spec",
"build:clean": "rm -rf dist",
"build:types": "tsc --emitDeclarationOnly && tsc-alias",
"build": "npm run build:clean && npm run build:types && node build.mjs"
},
"author": "Christopher Powroznik",
"license": "MIT",
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@types/chai": "^5.0.0",
"@types/esprima": "^4.0.6",
"@types/mocha": "^10.0.9",
"@types/node": "^22.7.9",
"c8": "^10.1.2",
"chai": "^5.1.2",
"esbuild": "^0.24.0",
"mocha": "^10.7.3",
"mocha-junit-reporter": "^2.2.1",
"source-map-support": "^0.5.21",
"tsc-alias": "^1.8.10",
"tsconfig-paths": "^4.2.0",
"tsx": "^4.19.1",
"typescript": "^5.6.3"
},
"dependencies": {
"commander": "^12.1.0",
"recast": "^0.23.9",
"strip-json-comments": "^5.0.1",
"zod": "^3.23.8"
},
"keywords": [
"TypeScript",
"Alias Imports",
"Relative Imports",
"Code Readability",
"Code Maintainability",
"CLI Tool",
"tsconfig",
"TypeScript Project",
"Build Process",
"Developer Tools"
],
"repository": {
"type": "git",
"url": "https://github.com/metroxe/relative-to-alias-resolver.git"
}
}