forked from DerYeger/yeger
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.39 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
{
"name": "vite-plugin-lib",
"version": "2.0.9",
"description": "Vite plugin for build configuration, automatic aliases, and type declarations.",
"author": "Jan Müller <[email protected]>",
"license": "MIT",
"funding": "https://github.com/sponsors/DerYeger",
"homepage": "https://github.com/DerYeger/yeger/tree/main/packages/vite-plugin-lib",
"repository": {
"type": "git",
"url": "git+https://github.com/DerYeger/yeger.git",
"directory": "packages/vite-plugin-lib"
},
"bugs": {
"url": "https://github.com/DerYeger/yeger/issues"
},
"keywords": [
"vite-plugin",
"declarations",
"library",
"aliases"
],
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
}
}
},
"types": "dist/index.d.mts",
"files": [
"LICENSE",
"dist"
],
"scripts": {
"build": "unbuild",
"check:publish": "publint run --strict",
"check:tsc": "tsc",
"lint": "yeger-lint"
},
"peerDependencies": {
"typescript": "*",
"vite": "^2.0.0 || ^3.0.0 || ^4.0.0 || ^5.0.0"
},
"dependencies": {
"picocolors": "1.0.0",
"vite-plugin-dts": "3.7.3"
},
"devDependencies": {
"@types/node": "20.11.28",
"@yeger/tsconfig": "workspace:*",
"typescript": "5.4.2",
"unbuild": "2.0.0",
"vite": "5.1.7"
},
"publishConfig": {
"access": "public"
}
}