forked from sxzz/rolldown-plugin-dts
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
116 lines (116 loc) · 2.93 KB
/
Copy pathpackage.json
File metadata and controls
116 lines (116 loc) · 2.93 KB
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
112
113
114
115
116
{
"name": "rolldown-plugin-dts",
"type": "module",
"version": "0.22.1",
"packageManager": "pnpm@10.28.2",
"description": "A Rolldown plugin to generate and bundle dts files.",
"author": "Kevin Deng <sxzz@sxzz.moe>",
"license": "MIT",
"funding": "https://github.com/sponsors/sxzz",
"homepage": "https://github.com/sxzz/rolldown-plugin-dts#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/sxzz/rolldown-plugin-dts.git"
},
"bugs": {
"url": "https://github.com/sxzz/rolldown-plugin-dts/issues"
},
"keywords": [
"rolldown",
"plugin",
"dts",
"typescript",
"vue",
"jsdoc"
],
"exports": {
".": "./dist/index.mjs",
"./filename": "./dist/filename.mjs",
"./tsc": "./dist/tsc.mjs",
"./tsc-context": "./dist/tsc-context.mjs",
"./tsc-worker": "./dist/tsc-worker.mjs",
"./package.json": "./package.json"
},
"types": "./dist/index.d.mts",
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=20.19.0"
},
"scripts": {
"lint": "eslint --cache .",
"lint:fix": "pnpm run lint --fix",
"build": "tsdown",
"dev": "tsdown --watch",
"test": "vitest",
"typecheck": "tsgo --noEmit",
"format": "prettier --cache --write .",
"release": "bumpp",
"prepack": "pnpm run build"
},
"peerDependencies": {
"@ts-macro/tsc": "^0.3.6",
"@typescript/native-preview": ">=7.0.0-dev.20250601.1",
"rolldown": "^1.0.0-rc.3",
"typescript": "^5.0.0",
"vue-tsc": "~3.2.0"
},
"peerDependenciesMeta": {
"@ts-macro/tsc": {
"optional": true
},
"@typescript/native-preview": {
"optional": true
},
"typescript": {
"optional": true
},
"vue-tsc": {
"optional": true
}
},
"dependencies": {
"@babel/generator": "8.0.0-rc.1",
"@babel/helper-validator-identifier": "8.0.0-rc.1",
"@babel/parser": "8.0.0-rc.1",
"@babel/types": "8.0.0-rc.1",
"ast-kit": "^3.0.0-beta.1",
"birpc": "^4.0.0",
"dts-resolver": "^2.1.3",
"get-tsconfig": "^4.13.1",
"obug": "^2.1.1"
},
"devDependencies": {
"@jridgewell/source-map": "^0.3.11",
"@sxzz/eslint-config": "^7.6.0",
"@sxzz/prettier-config": "^2.3.1",
"@sxzz/test-utils": "^0.5.15",
"@types/node": "^25.2.0",
"@typescript/native-preview": "7.0.0-dev.20260204.1",
"@volar/typescript": "^2.4.28",
"@vue/language-core": "^3.2.4",
"arktype": "^2.1.29",
"bumpp": "^10.4.0",
"diff": "^8.0.3",
"eslint": "^9.39.2",
"prettier": "^3.8.1",
"rolldown": "^1.0.0-rc.3",
"rolldown-plugin-dts-snapshot": "^0.3.2",
"rolldown-plugin-require-cjs": "^0.3.3",
"rollup-plugin-dts": "^6.3.0",
"tinyglobby": "^0.2.15",
"tsdown": "^0.20.1",
"typescript": "^5.9.3",
"vitest": "^4.0.18",
"vue": "^3.5.27",
"vue-tsc": "^3.2.4"
},
"resolutions": {
"rolldown": "^1.0.0-rc.3"
},
"prettier": "@sxzz/prettier-config"
}