forked from qmhc/vite-plugin-dts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
106 lines (106 loc) · 2.93 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
{
"name": "vite-plugin-dts",
"version": "1.7.1",
"type": "module",
"license": "MIT",
"author": "qmhc",
"packageManager": "pnpm@7.1.0",
"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"
}
},
"scripts": {
"build": "tsx scripts/build.ts",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s --commit-path .",
"dev": "unbuild --stub",
"lint": "pnpm run lint:src && pnpm run lint:example",
"lint:src": "eslint --fix --ext .js,.jsx,.ts,.tsx,.vue src/**",
"lint:example": "eslint --fix --ext .js,.jsx,.ts,.tsx,.vue example/{src,components}/**",
"postinstall": "is-ci || husky install",
"postpublish": "pinst --enable",
"precommit": "lint-staged -c ./.husky/.lintstagedrc -q",
"prepublishOnly": "pinst --disable",
"prettier": "pretty-quick --staged",
"release": "tsx scripts/release.ts",
"test": "vitest run",
"test:ts": "pnpm -C examples/ts build",
"test:vue": "pnpm -C examples/vue build"
},
"engines": {
"node": "^14.18.0 || >=16.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/qmhc/vite-plugin-dts.git"
},
"bugs": {
"url": "https://github.com/qmhc/vite-plugin-dts/issues"
},
"files": [
"dist"
],
"keywords": [
"vite",
"vite-plugin",
"ts",
"dts",
"typescript"
],
"dependencies": {
"@microsoft/api-extractor": "^7.33.5",
"@rollup/pluginutils": "^5.0.2",
"@rushstack/node-core-library": "^3.53.2",
"debug": "^4.3.4",
"fast-glob": "^3.2.12",
"fs-extra": "^10.1.0",
"kolorist": "^1.6.0",
"ts-morph": "^16.0.0"
},
"devDependencies": {
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@types/debug": "^4.1.7",
"@types/fs-extra": "^9.0.13",
"@types/minimist": "^1.2.2",
"@types/node": "^18.11.7",
"@types/prompts": "^2.4.1",
"@types/semver": "^7.3.13",
"@typescript-eslint/eslint-plugin": "^5.41.0",
"@typescript-eslint/parser": "^5.41.0",
"@vue/eslint-config-standard": "^8.0.1",
"@vue/eslint-config-typescript": "^11.0.2",
"conventional-changelog-cli": "^2.2.2",
"cross-env": "^7.0.3",
"eslint": "^8.26.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-vue": "^9.6.0",
"execa": "^6.1.0",
"husky": "^8.0.1",
"is-ci": "^3.0.1",
"lint-staged": "^13.0.3",
"minimist": "^1.2.7",
"pinst": "^3.0.0",
"prettier": "^2.7.1",
"pretty-quick": "^3.1.3",
"prompts": "^2.4.2",
"rimraf": "^3.0.2",
"semver": "^7.3.8",
"tsx": "^3.11.0",
"typescript": "4.8.4",
"unbuild": "^0.9.4",
"vite": "^3.2.1",
"vitest": "^0.24.3",
"vue": "3.2.41"
},
"peerDependencies": {
"vite": ">=2.9.0"
}
}