@depup/vite-plugin-dts 4.5.4-depup.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,153 @@
1
+ {
2
+ "name": "@depup/vite-plugin-dts",
3
+ "version": "4.5.4-depup.0",
4
+ "type": "module",
5
+ "license": "MIT",
6
+ "author": "qmhc",
7
+ "main": "dist/index.cjs",
8
+ "module": "dist/index.mjs",
9
+ "types": "dist/index.d.ts",
10
+ "exports": {
11
+ ".": {
12
+ "types": "./dist/index.d.ts",
13
+ "require": "./dist/index.cjs",
14
+ "import": "./dist/index.mjs"
15
+ }
16
+ },
17
+ "files": [
18
+ "dist",
19
+ "changes.json",
20
+ "README.md"
21
+ ],
22
+ "keywords": [
23
+ "vite-plugin-dts",
24
+ "depup",
25
+ "updated-dependencies",
26
+ "security",
27
+ "latest",
28
+ "patched",
29
+ "vite",
30
+ "vite-plugin",
31
+ "ts",
32
+ "dts",
33
+ "typescript",
34
+ "vue",
35
+ "tsc",
36
+ "vue-tsc",
37
+ "volar"
38
+ ],
39
+ "repository": {
40
+ "type": "git",
41
+ "url": "git+https://github.com/qmhc/vite-plugin-dts.git"
42
+ },
43
+ "bugs": {
44
+ "url": "https://github.com/qmhc/vite-plugin-dts/issues"
45
+ },
46
+ "dependencies": {
47
+ "@microsoft/api-extractor": "^7.57.7",
48
+ "@rollup/pluginutils": "^5.3.0",
49
+ "@volar/typescript": "^2.4.28",
50
+ "@vue/language-core": "^3.2.6",
51
+ "compare-versions": "^6.1.1",
52
+ "debug": "^4.4.3",
53
+ "kolorist": "^1.8.0",
54
+ "local-pkg": "^1.1.2",
55
+ "magic-string": "^0.30.21"
56
+ },
57
+ "devDependencies": {
58
+ "@commitlint/cli": "^19.7.1",
59
+ "@types/debug": "^4.1.12",
60
+ "@types/minimist": "^1.2.5",
61
+ "@types/node": "^22.13.5",
62
+ "@types/prompts": "^2.4.9",
63
+ "@types/semver": "^7.5.8",
64
+ "@vexip-ui/commitlint-config": "^0.5.0",
65
+ "@vexip-ui/eslint-config": "^0.12.1",
66
+ "@vexip-ui/prettier-config": "^1.0.0",
67
+ "@vexip-ui/scripts": "^1.2.0",
68
+ "@vue/eslint-config-standard": "^8.0.1",
69
+ "@vue/eslint-config-typescript": "^13.0.0",
70
+ "conventional-changelog-cli": "^5.0.0",
71
+ "eslint": "^8.57.0",
72
+ "execa": "^9.5.2",
73
+ "husky": "^9.1.7",
74
+ "is-ci": "^4.1.0",
75
+ "lint-staged": "^15.4.3",
76
+ "minimist": "^1.2.8",
77
+ "pinst": "^3.0.0",
78
+ "prettier": "^3.5.2",
79
+ "pretty-quick": "^4.0.0",
80
+ "prompts": "^2.4.2",
81
+ "rimraf": "^6.0.1",
82
+ "semver": "^7.7.1",
83
+ "tsx": "^4.19.3",
84
+ "typescript": "5.7.3",
85
+ "unbuild": "^3.3.1",
86
+ "vite": "^6.2.0",
87
+ "vitest": "^3.0.7"
88
+ },
89
+ "peerDependencies": {
90
+ "typescript": "*",
91
+ "vite": "*"
92
+ },
93
+ "peerDependenciesMeta": {
94
+ "vite": {
95
+ "optional": true
96
+ }
97
+ },
98
+ "scripts": {
99
+ "build": "tsx scripts/build.ts",
100
+ "changelog": "conventional-changelog -p angular -i CHANGELOG.md -s --commit-path .",
101
+ "dev": "unbuild --stub",
102
+ "_postinstall": "is-ci || husky install",
103
+ "lint": "eslint --ext .js,.jsx,.ts,.tsx \"{src,tests}/**\"",
104
+ "precommit": "lint-staged -c ./.husky/.lintstagedrc -q --allow-empty",
105
+ "prettier": "pretty-quick --staged && pnpm run lint",
106
+ "publish:ci": "tsx scripts/publish.ts",
107
+ "release": "tsx scripts/release.ts",
108
+ "test": "vitest run",
109
+ "test:dev": "vitest",
110
+ "test:react": "pnpm -C examples/react build",
111
+ "test:svelte": "pnpm -C examples/svelte build",
112
+ "test:ts": "pnpm -C examples/ts build",
113
+ "test:vue": "pnpm -C examples/vue build"
114
+ },
115
+ "description": "vite-plugin-dts with all dependencies updated to latest",
116
+ "depup": {
117
+ "changes": {
118
+ "@microsoft/api-extractor": {
119
+ "from": "^7.50.1",
120
+ "to": "^7.57.7"
121
+ },
122
+ "@rollup/pluginutils": {
123
+ "from": "^5.1.4",
124
+ "to": "^5.3.0"
125
+ },
126
+ "@volar/typescript": {
127
+ "from": "^2.4.11",
128
+ "to": "^2.4.28"
129
+ },
130
+ "@vue/language-core": {
131
+ "from": "2.2.0",
132
+ "to": "^3.2.6"
133
+ },
134
+ "debug": {
135
+ "from": "^4.4.0",
136
+ "to": "^4.4.3"
137
+ },
138
+ "local-pkg": {
139
+ "from": "^1.0.0",
140
+ "to": "^1.1.2"
141
+ },
142
+ "magic-string": {
143
+ "from": "^0.30.17",
144
+ "to": "^0.30.21"
145
+ }
146
+ },
147
+ "depsUpdated": 7,
148
+ "originalPackage": "vite-plugin-dts",
149
+ "originalVersion": "4.5.4",
150
+ "processedAt": "2026-03-22T00:41:34.001Z",
151
+ "smokeTest": "failed"
152
+ }
153
+ }