-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.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
{
"name": "@holy-two/vite-plugin-alias",
"private": false,
"version": "0.0.2",
"type": "module",
"license": "Apache-2.0",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"scripts": {
"dev": "pnpm -C playground run dev",
"build": "unbuild"
},
"files": [
"dist"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"engines": {
"node": ">=18.x"
},
"bugs": {
"url": "https://github.com/holy-two/vite-plugin-alias/issues"
},
"homepage": "https://github.com/holy-two/vite-plugin-alias#readme",
"repository": {
"type": "git",
"url": "https://github.com/holy-two/vite-plugin-alias"
},
"devDependencies": {
"@holy-two/vite-plugin-alias": "workspace:*",
"@rollup/plugin-commonjs": "^25.0.7",
"typescript": "^5.3.3",
"unbuild": "^2.0.0",
"vite": "^5.0.12"
},
"peerDependencies": {
"vite": ">=4.0.0"
},
"dependencies": {
"@types/node": "^20.11.9",
"jsonc-parser": "^3.2.1"
}
}