-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.35 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
{
"name": "vite-plugin-ts-alias",
"version": "0.1.1",
"description": "vite plugin to transform tsconfig paths to alias",
"keywords": [
"vite",
"vite plugin",
"tsconfig paths",
"alias"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Codpoe/vite-plugin-ts-alias.git"
},
"bugs": {
"url": "https://github.com/Codpoe/vite-plugin-ts-alias/issues"
},
"homepage": "https://github.com/Codpoe/vite-plugin-ts-alias#readme",
"author": "Codpoe <[email protected]> (https://github.com/codpoe)",
"files": [
"dist"
],
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"prepare": "husky install",
"dev": "unbuild --stub",
"build": "unbuild"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "eslint --fix"
},
"devDependencies": {
"@codpoe/eslint-config": "^0.1.3",
"@types/node": "^17.0.29",
"eslint": "^8.15.0",
"husky": "^8.0.1",
"lint-staged": "^12.4.1",
"prettier": "^2.6.2",
"rimraf": "^3.0.2",
"typescript": "^4.6.4",
"unbuild": "^0.7.4",
"vite": "^2.9.9"
},
"dependencies": {
"load-tsconfig": "^0.2.3",
"upath": "^2.0.1"
}
}