-
Notifications
You must be signed in to change notification settings - Fork 91
/
package.json
111 lines (111 loc) · 2.87 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "vite-plugin-dts",
"version": "4.3.0",
"type": "module",
"packageManager": "[email protected]",
"license": "MIT",
"author": "qmhc",
"scripts": {
"build": "tsx scripts/build.ts",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s --commit-path .",
"dev": "unbuild --stub",
"postinstall": "is-ci || husky install",
"lint": "eslint --ext .js,.jsx,.ts,.tsx \"{src,tests}/**\"",
"precommit": "lint-staged -c ./.husky/.lintstagedrc -q --allow-empty",
"prepublishOnly": "pinst --disable",
"prettier": "pretty-quick --staged && pnpm run lint",
"postpublish": "pinst --enable",
"release": "tsx scripts/release.ts",
"test": "vitest run",
"test:dev": "vitest",
"test:react": "pnpm -C examples/react build",
"test:svelte": "pnpm -C examples/svelte build",
"test:ts": "pnpm -C examples/ts build",
"test:vue": "pnpm -C examples/vue build"
},
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"import": "./dist/index.mjs"
}
},
"files": [
"dist"
],
"engines": {
"node": "^14.18.0 || >=16.0.0"
},
"keywords": [
"vite",
"vite-plugin",
"ts",
"dts",
"typescript",
"vue",
"tsc",
"vue-tsc",
"volar"
],
"repository": {
"type": "git",
"url": "git+https://github.com/qmhc/vite-plugin-dts.git"
},
"bugs": {
"url": "https://github.com/qmhc/vite-plugin-dts/issues"
},
"dependencies": {
"@microsoft/api-extractor": "^7.47.11",
"@rollup/pluginutils": "^5.1.0",
"@volar/typescript": "^2.4.4",
"@vue/language-core": "2.1.6",
"compare-versions": "^6.1.1",
"debug": "^4.3.6",
"kolorist": "^1.8.0",
"local-pkg": "^0.5.0",
"magic-string": "^0.30.11"
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@types/debug": "^4.1.12",
"@types/minimist": "^1.2.5",
"@types/node": "^20.14.11",
"@types/prompts": "^2.4.9",
"@types/semver": "^7.5.8",
"@vexip-ui/commitlint-config": "^0.5.0",
"@vexip-ui/eslint-config": "^0.12.1",
"@vexip-ui/prettier-config": "^1.0.0",
"@vue/eslint-config-standard": "^8.0.1",
"@vue/eslint-config-typescript": "^13.0.0",
"conventional-changelog-cli": "^5.0.0",
"eslint": "^8.57.0",
"execa": "^8.0.1",
"husky": "^8.0.3",
"is-ci": "^3.0.1",
"lint-staged": "^15.2.7",
"minimist": "^1.2.8",
"pinst": "^3.0.0",
"prettier": "^3.3.3",
"pretty-quick": "^4.0.0",
"prompts": "^2.4.2",
"rimraf": "^6.0.1",
"semver": "^7.6.3",
"tsx": "^4.16.2",
"typescript": "5.6.3",
"unbuild": "^2.0.0",
"vite": "^5.3.5",
"vitest": "^2.0.4"
},
"peerDependencies": {
"typescript": "*",
"vite": "*"
},
"peerDependenciesMeta": {
"vite": {
"optional": true
}
}
}