-
-
Notifications
You must be signed in to change notification settings - Fork 52
/
Copy pathpackage.json
62 lines (62 loc) · 1.38 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
{
"name": "vite-tsconfig-paths",
"version": "5.1.4",
"description": "Vite resolver for TypeScript compilerOptions.paths",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"author": "aleclarson",
"repository": "aleclarson/vite-tsconfig-paths",
"license": "MIT",
"scripts": {
"clean": "rimraf dist && git checkout HEAD dist",
"dev": "pnpm bundle --watch",
"build": "pnpm clean && pnpm bundle",
"bundle": "tsup-node src/index.ts --sourcemap --dts --format esm",
"prepare": "pnpm build",
"test": "vitest"
},
"dependencies": {
"debug": "^4.1.1",
"globrex": "^0.1.2",
"tsconfck": "^3.0.3"
},
"devDependencies": {
"@alloc/fast-rimraf": "^1.0.8",
"@types/debug": "^4.1.5",
"@types/globrex": "^0.1.0",
"@types/node": "^22.2.0",
"esbuild": "^0.11.12",
"execa": "^9.5.1",
"klona": "^2.0.4",
"prettier": "^2.8.7",
"rollup": "^2.45.2",
"tsup": "^6.5.0",
"typescript": "^5.7.2",
"vite": "^6.0.2",
"vite-tsconfig-paths": "link:.",
"vitest": "^2.1.8"
},
"peerDependencies": {
"vite": "*"
},
"peerDependenciesMeta": {
"vite": {
"optional": true
}
},
"keywords": [
"vite",
"resolver",
"tsconfig",
"paths"
],
"files": [
"src",
"dist"
]
}