-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.08 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "esbuild-fix-imports-plugin",
"version": "1.0.8",
"description": "An ESBuild plugin that fixes import paths by applying fixAliasPlugin, fixFolderImportsPlugin, and fixExtensionsPlugin. It ensures correct file extensions, resolves path aliases, and fixes directory imports in your build output when using 'tsup' with 'bundle: false'.",
"scripts": {
"build": "pnpm build:package & pnpm build:types",
"build:package": "tsup",
"build:types": "tsc --project ./tsconfig.types.json && tsc-alias --project ./tsconfig.types.json",
"clean": "rimraf ./dist"
},
"private": false,
"keywords": [
"esbuild",
"plugin",
"imports",
"fix",
"alias",
"extensions",
"folder-imports",
"typescript",
"tsup",
"bundle-false",
"import-paths",
"path-aliases",
"module-resolution"
],
"license": "ISC",
"homepage": "https://github.com/aymericzip/esbuild-fix-imports-plugin",
"bugs": {
"url": "https://github.com/aymericzip/esbuild-fix-imports-plugin/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aymericzip/esbuild-fix-imports-plugin.git"
},
"author": {
"name": "Aymeric PINEAU",
"url": "https://github.com/aymericzip"
},
"contributors": [
{
"name": "Aymeric Pineau",
"email": "[email protected]",
"url": "https://github.com/aymericzip"
}
],
"type": "module",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"require": "./dist/cjs/index.cjs",
"import": "./dist/esm/index.mjs"
},
"./package.json": "./package.json"
},
"types": "dist/types/index.d.ts",
"main": "dist/cjs/index.cjs",
"module": "dist/esm/index.mjs",
"typesVersions": {
"*": {
"package.json": [
"./package.json"
]
}
},
"files": [
"./dist",
"./package.json"
],
"devDependencies": {
"@types/node": "^22.8.1",
"esbuild": "^0.24.0",
"tsc-alias": "^1.8.10",
"tsup": "^8.3.5",
"typescript": "^5.6.3"
},
"bug": {
"url": "https://github.com/aymericzip/esbuild-fix-imports-plugin/issues"
}
}