-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.44 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
{
"name": "tsconfig-paths-resolver",
"type": "commonjs",
"types": "dist/main.d.ts",
"version": "1.0.2",
"main": "dist/main.js",
"readme": "README.md",
"keywords": [
"tsconfig-paths-resolver",
"tsconfig-path-alias-resolver",
"ts-alias-to-relative-path",
"module-alias-resolver",
"tsconfig-paths-build-time-resolver",
"tsconfig-paths-compiler-plugin",
"tsconfig-paths-build-tool",
"tsconfig-paths-bundler-plugin",
"tsconfig-paths-alias-resolver",
"tsconfig-paths-alias-build-time-resolver",
"tsconfig-paths-import-resolver",
"tsconfig-paths-import-build-time-resolver",
"tsconfig-paths-module-resolver",
"tsconfig-paths-module-build-time-resolver"
],
"scripts": {
"dev": "tsnd --respawn --clear ./src/index.ts",
"build": "tsup"
},
"bin": {
"tspr": "dist/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Safin-Ali/tsconfig-paths-resolver.git"
},
"author": "Safin Ali",
"license": "MIT",
"bugs": {
"url": "https://github.com/Safin-Ali/tsconfig-paths-resolver/issues"
},
"homepage": "https://github.com/Safin-Ali/tsconfig-paths-resolver#readme",
"description": "typescript modules paths aliases to relative path resolver at build time",
"dependencies": {
"@babel/generator": "^7.23.0",
"@babel/parser": "^7.23.0",
"json-to-js-obj": "^1.0.5"
},
"devDependencies": {
"@types/babel__generator": "^7.6.5",
"@types/node": "^20.8.6",
"tsup": "^7.2.0",
"typescript": "^5.2.2"
}
}