-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.63 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 1.63 KB
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
{
"name": "bun-tsconfig-paths",
"description": "Resolve path aliases from tsconfig.json",
"version": "0.1.1",
"license": "MIT",
"author": "Stavros Nikolopoulos <snikoletopoulos@hotmail.com>",
"repository": {
"type": "git",
"url": "git+https://github.com/nikero41/bun-tsconfig-paths.git"
},
"bugs": "https://github.com/nikero41/bun-tsconfig-paths/issues",
"homepage": "https://github.com/nikero41/bun-tsconfig-paths",
"type": "module",
"publishConfig": {
"access": "public"
},
"keywords": [
"bun",
"bun-plugin",
"tsconfig",
"tsconfig-paths",
"bundler"
],
"files": [
"dist"
],
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"scripts": {
"prebuild": "tsc --emitDeclarationOnly",
"build": "bun run build.ts",
"lint": "bun run lint:eslint; bun run lint:ts",
"lint:eslint": "eslint src",
"lint:ts": "tsc --noEmit",
"format": "prettier --write src",
"test": "bun test"
},
"dependencies": {
"tsconfig-paths": "^4.2.0"
},
"devDependencies": {
"@eslint/compat": "^2.0.0",
"@eslint/js": "^9.36.0",
"@eslint/json": "^1.0.0",
"@ianvs/prettier-plugin-sort-imports": "^4.7.1",
"@total-typescript/tsconfig": "^1.0.4",
"@types/bun": "^1.3.8",
"eslint": "^9.36.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"prettier": "^3.8.1",
"typescript-eslint": "^8.48.1",
"typescript": "^5"
},
"peerDependencies": {
"typescript": "^5"
},
"packageManager": "bun@1.3.8",
"engines": {
"bun": ">=1.0.0"
}
}