vite-plugin-dts 1.7.0 → 1.7.2

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 CHANGED
@@ -1,18 +1,66 @@
1
1
  {
2
- "author": {
3
- "name": "qmhc"
2
+ "name": "vite-plugin-dts",
3
+ "version": "1.7.2",
4
+ "type": "module",
5
+ "license": "MIT",
6
+ "author": "qmhc",
7
+ "packageManager": "pnpm@7.1.0",
8
+ "main": "dist/index.cjs",
9
+ "module": "dist/index.mjs",
10
+ "types": "dist/index.d.ts",
11
+ "exports": {
12
+ ".": {
13
+ "types": "./dist/index.d.ts",
14
+ "require": "./dist/index.cjs",
15
+ "import": "./dist/index.mjs"
16
+ }
17
+ },
18
+ "scripts": {
19
+ "build": "tsx scripts/build.ts",
20
+ "changelog": "conventional-changelog -p angular -i CHANGELOG.md -s --commit-path .",
21
+ "dev": "unbuild --stub",
22
+ "lint": "pnpm run lint:src && pnpm run lint:example",
23
+ "lint:src": "eslint --fix --ext .js,.jsx,.ts,.tsx,.vue src/**",
24
+ "lint:example": "eslint --fix --ext .js,.jsx,.ts,.tsx,.vue example/{src,components}/**",
25
+ "_postinstall": "is-ci || husky install",
26
+ "postpublish": "pinst --enable",
27
+ "precommit": "lint-staged -c ./.husky/.lintstagedrc -q",
28
+ "prepublishOnly": "pinst --disable",
29
+ "prettier": "pretty-quick --staged",
30
+ "release": "tsx scripts/release.ts",
31
+ "test": "vitest run",
32
+ "test:ts": "pnpm -C examples/ts build",
33
+ "test:vue": "pnpm -C examples/vue build"
34
+ },
35
+ "engines": {
36
+ "node": "^14.18.0 || >=16.0.0"
37
+ },
38
+ "repository": {
39
+ "type": "git",
40
+ "url": "git+https://github.com/qmhc/vite-plugin-dts.git"
4
41
  },
5
42
  "bugs": {
6
43
  "url": "https://github.com/qmhc/vite-plugin-dts/issues"
7
44
  },
45
+ "files": [
46
+ "dist"
47
+ ],
48
+ "keywords": [
49
+ "vite",
50
+ "vite-plugin",
51
+ "ts",
52
+ "dts",
53
+ "typescript"
54
+ ],
8
55
  "dependencies": {
9
56
  "@microsoft/api-extractor": "^7.33.5",
57
+ "@rollup/pluginutils": "^5.0.2",
10
58
  "@rushstack/node-core-library": "^3.53.2",
11
59
  "debug": "^4.3.4",
12
60
  "fast-glob": "^3.2.12",
13
61
  "fs-extra": "^10.1.0",
14
62
  "kolorist": "^1.6.0",
15
- "ts-morph": "^16.0.0"
63
+ "ts-morph": "17.0.1"
16
64
  },
17
65
  "devDependencies": {
18
66
  "@commitlint/cli": "^17.1.2",
@@ -25,7 +73,6 @@
25
73
  "@types/semver": "^7.3.13",
26
74
  "@typescript-eslint/eslint-plugin": "^5.41.0",
27
75
  "@typescript-eslint/parser": "^5.41.0",
28
- "@vitejs/plugin-vue": "^3.2.0",
29
76
  "@vue/eslint-config-standard": "^8.0.1",
30
77
  "@vue/eslint-config-typescript": "^11.0.2",
31
78
  "conventional-changelog-cli": "^2.2.2",
@@ -53,52 +100,7 @@
53
100
  "vitest": "^0.24.3",
54
101
  "vue": "3.2.41"
55
102
  },
56
- "engines": {
57
- "node": "^14.18.0 || >=16.0.0"
58
- },
59
- "exports": {
60
- ".": {
61
- "types": "./dist/index.d.ts",
62
- "require": "./dist/index.cjs",
63
- "import": "./dist/index.mjs"
64
- }
65
- },
66
- "files": [
67
- "dist"
68
- ],
69
- "keywords": [
70
- "vite",
71
- "vite-plugin",
72
- "ts",
73
- "dts",
74
- "typescript"
75
- ],
76
- "license": "MIT",
77
- "main": "dist/index.cjs",
78
- "module": "dist/index.mjs",
79
- "name": "vite-plugin-dts",
80
103
  "peerDependencies": {
81
104
  "vite": ">=2.9.0"
82
- },
83
- "repository": {
84
- "type": "git",
85
- "url": "git+https://github.com/qmhc/vite-plugin-dts.git"
86
- },
87
- "type": "module",
88
- "types": "dist/index.d.ts",
89
- "version": "1.7.0",
90
- "scripts": {
91
- "build": "tsx scripts/build.ts",
92
- "changelog": "conventional-changelog -p angular -i CHANGELOG.md -s --commit-path .",
93
- "dev": "unbuild --stub",
94
- "lint": "pnpm run lint:src && pnpm run lint:example",
95
- "lint:src": "eslint --fix --ext .js,.jsx,.ts,.tsx,.vue src/**",
96
- "lint:example": "eslint --fix --ext .js,.jsx,.ts,.tsx,.vue example/{src,components}/**",
97
- "_postinstall": "is-ci || husky install",
98
- "precommit": "lint-staged -c ./.husky/.lintstagedrc -q",
99
- "prettier": "pretty-quick --staged",
100
- "release": "tsx scripts/release.ts",
101
- "test": "vitest run",
102
- "test:e2e": "pnpm -C example build"
103
105
  }
104
- }
106
+ }