vite-plugin-dts 1.6.5 → 1.7.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/dist/index.cjs +9017 -4854
- package/dist/index.d.ts +1 -0
- package/dist/index.mjs +8998 -4823
- package/package.json +25 -27
package/package.json
CHANGED
|
@@ -6,9 +6,8 @@
|
|
|
6
6
|
"url": "https://github.com/qmhc/vite-plugin-dts/issues"
|
|
7
7
|
},
|
|
8
8
|
"dependencies": {
|
|
9
|
-
"@microsoft/api-extractor": "^7.
|
|
10
|
-
"@rushstack/node-core-library": "^3.53.
|
|
11
|
-
"chalk": "^4.1.2",
|
|
9
|
+
"@microsoft/api-extractor": "^7.33.5",
|
|
10
|
+
"@rushstack/node-core-library": "^3.53.2",
|
|
12
11
|
"debug": "^4.3.4",
|
|
13
12
|
"fast-glob": "^3.2.12",
|
|
14
13
|
"fs-extra": "^10.1.0",
|
|
@@ -21,44 +20,45 @@
|
|
|
21
20
|
"@types/debug": "^4.1.7",
|
|
22
21
|
"@types/fs-extra": "^9.0.13",
|
|
23
22
|
"@types/minimist": "^1.2.2",
|
|
24
|
-
"@types/node": "^18.7
|
|
25
|
-
"@types/prompts": "^2.
|
|
26
|
-
"@types/semver": "^7.3.
|
|
27
|
-
"@typescript-eslint/eslint-plugin": "^5.
|
|
28
|
-
"@typescript-eslint/parser": "^5.
|
|
29
|
-
"@vitejs/plugin-vue": "^3.
|
|
23
|
+
"@types/node": "^18.11.7",
|
|
24
|
+
"@types/prompts": "^2.4.1",
|
|
25
|
+
"@types/semver": "^7.3.13",
|
|
26
|
+
"@typescript-eslint/eslint-plugin": "^5.41.0",
|
|
27
|
+
"@typescript-eslint/parser": "^5.41.0",
|
|
28
|
+
"@vitejs/plugin-vue": "^3.2.0",
|
|
30
29
|
"@vue/eslint-config-standard": "^8.0.1",
|
|
31
30
|
"@vue/eslint-config-typescript": "^11.0.2",
|
|
32
31
|
"conventional-changelog-cli": "^2.2.2",
|
|
33
32
|
"cross-env": "^7.0.3",
|
|
34
|
-
"eslint": "^8.
|
|
33
|
+
"eslint": "^8.26.0",
|
|
35
34
|
"eslint-plugin-import": "^2.26.0",
|
|
36
35
|
"eslint-plugin-node": "^11.1.0",
|
|
37
|
-
"eslint-plugin-promise": "^6.
|
|
38
|
-
"eslint-plugin-vue": "^9.
|
|
36
|
+
"eslint-plugin-promise": "^6.1.1",
|
|
37
|
+
"eslint-plugin-vue": "^9.6.0",
|
|
39
38
|
"execa": "^6.1.0",
|
|
40
39
|
"husky": "^8.0.1",
|
|
41
40
|
"is-ci": "^3.0.1",
|
|
42
41
|
"lint-staged": "^13.0.3",
|
|
43
|
-
"minimist": "^1.2.
|
|
42
|
+
"minimist": "^1.2.7",
|
|
44
43
|
"pinst": "^3.0.0",
|
|
45
44
|
"prettier": "^2.7.1",
|
|
46
45
|
"pretty-quick": "^3.1.3",
|
|
47
46
|
"prompts": "^2.4.2",
|
|
48
47
|
"rimraf": "^3.0.2",
|
|
49
|
-
"semver": "^7.3.
|
|
50
|
-
"tsx": "^3.
|
|
51
|
-
"typescript": "4.
|
|
52
|
-
"unbuild": "^0.
|
|
53
|
-
"vite": "^3.1
|
|
54
|
-
"vitest": "^0.
|
|
55
|
-
"vue": "3.2.
|
|
48
|
+
"semver": "^7.3.8",
|
|
49
|
+
"tsx": "^3.11.0",
|
|
50
|
+
"typescript": "4.8.4",
|
|
51
|
+
"unbuild": "^0.9.4",
|
|
52
|
+
"vite": "^3.2.1",
|
|
53
|
+
"vitest": "^0.24.3",
|
|
54
|
+
"vue": "3.2.41"
|
|
56
55
|
},
|
|
57
56
|
"engines": {
|
|
58
57
|
"node": "^14.18.0 || >=16.0.0"
|
|
59
58
|
},
|
|
60
59
|
"exports": {
|
|
61
60
|
".": {
|
|
61
|
+
"types": "./dist/index.d.ts",
|
|
62
62
|
"require": "./dist/index.cjs",
|
|
63
63
|
"import": "./dist/index.mjs"
|
|
64
64
|
}
|
|
@@ -84,6 +84,9 @@
|
|
|
84
84
|
"type": "git",
|
|
85
85
|
"url": "git+https://github.com/qmhc/vite-plugin-dts.git"
|
|
86
86
|
},
|
|
87
|
+
"type": "module",
|
|
88
|
+
"types": "dist/index.d.ts",
|
|
89
|
+
"version": "1.7.0",
|
|
87
90
|
"scripts": {
|
|
88
91
|
"build": "tsx scripts/build.ts",
|
|
89
92
|
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s --commit-path .",
|
|
@@ -92,15 +95,10 @@
|
|
|
92
95
|
"lint:src": "eslint --fix --ext .js,.jsx,.ts,.tsx,.vue src/**",
|
|
93
96
|
"lint:example": "eslint --fix --ext .js,.jsx,.ts,.tsx,.vue example/{src,components}/**",
|
|
94
97
|
"_postinstall": "is-ci || husky install",
|
|
95
|
-
"postpublish": "pinst --enable",
|
|
96
98
|
"precommit": "lint-staged -c ./.husky/.lintstagedrc -q",
|
|
97
|
-
"prepublishOnly": "pinst --disable",
|
|
98
99
|
"prettier": "pretty-quick --staged",
|
|
99
100
|
"release": "tsx scripts/release.ts",
|
|
100
101
|
"test": "vitest run",
|
|
101
102
|
"test:e2e": "pnpm -C example build"
|
|
102
|
-
}
|
|
103
|
-
|
|
104
|
-
"types": "dist/index.d.ts",
|
|
105
|
-
"version": "1.6.5"
|
|
106
|
-
}
|
|
103
|
+
}
|
|
104
|
+
}
|