@visulima/rollup-plugin-dts 1.0.0-alpha.1 → 1.0.0-alpha.3

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +7 -0
  2. package/package.json +86 -134
package/CHANGELOG.md ADDED
@@ -0,0 +1,7 @@
1
+ ## @visulima/rollup-plugin-dts [1.0.0-alpha.3](https://github.com/visulima/packem/compare/@visulima/rollup-plugin-dts@1.0.0-alpha.2...@visulima/rollup-plugin-dts@1.0.0-alpha.3) (2026-03-14)
2
+
3
+ ## @visulima/rollup-plugin-dts [1.0.0-alpha.2](https://github.com/visulima/packem/compare/@visulima/rollup-plugin-dts@1.0.0-alpha.1...@visulima/rollup-plugin-dts@1.0.0-alpha.2) (2026-03-06)
4
+
5
+ ### Bug Fixes
6
+
7
+ * fixed broken publishing ([002f29a](https://github.com/visulima/packem/commit/002f29a6a3edf695d98abae0f18c6b0c328ef832))
package/package.json CHANGED
@@ -1,143 +1,95 @@
1
1
  {
2
- "name": "@visulima/rollup-plugin-dts",
3
- "version": "1.0.0-alpha.1",
4
- "description": "A Rollup plugin to bundle dts files",
5
- "homepage": "https://github.com/visulima/packem/tree/main/packages/rollup-plugin-dts",
6
- "bugs": {
7
- "url": "https://github.com/visulima/packem/issues"
2
+ "name": "@visulima/rollup-plugin-dts",
3
+ "version": "1.0.0-alpha.3",
4
+ "description": "A Rollup plugin to bundle dts files",
5
+ "homepage": "https://github.com/visulima/packem/tree/main/packages/rollup-plugin-dts",
6
+ "bugs": {
7
+ "url": "https://github.com/visulima/packem/issues"
8
+ },
9
+ "repository": {
10
+ "type": "git",
11
+ "url": "git+https://github.com/visulima/packem.git",
12
+ "directory": "packages/rollup-plugin-dts"
13
+ },
14
+ "funding": [
15
+ {
16
+ "type": "github",
17
+ "url": "https://github.com/sponsors/sxzz"
8
18
  },
9
- "repository": {
10
- "type": "git",
11
- "url": "git+https://github.com/visulima/packem.git",
12
- "directory": "packages/rollup-plugin-dts"
19
+ {
20
+ "type": "github",
21
+ "url": "https://github.com/sponsors/prisis"
13
22
  },
14
- "funding": [
15
- {
16
- "type": "github",
17
- "url": "https://github.com/sponsors/sxzz"
18
- },
19
- {
20
- "type": "github",
21
- "url": "https://github.com/sponsors/prisis"
22
- },
23
- {
24
- "type": "consulting",
25
- "url": "https://anolilab.com/support"
26
- }
27
- ],
28
- "license": "MIT",
29
- "author": "三咲智子 Kevin Deng <sxzz@sxzz.moe>",
30
- "contributors": [
31
- {
32
- "name": "Daniel Bannert",
33
- "email": "d.bannert@anolilab.de"
34
- }
35
- ],
36
- "sideEffects": false,
37
- "type": "module",
38
- "exports": {
39
- ".": {
40
- "types": "./dist/index.ts",
41
- "default": "./dist/index.js"
42
- },
43
- "./filename": {
44
- "types": "./dist/filename.js",
45
- "default": "./dist/filename.js"
46
- },
47
- "./package.json": "./package.json"
48
- },
49
- "files": [
50
- "CHANGELOG.md",
51
- "README.md",
52
- "dist"
53
- ],
54
- "scripts": {
55
- "build": "../../node_modules/.bin/packem build --development || exit 0",
56
- "build:prod": "../../node_modules/.bin/packem build --production || exit 0",
57
- "clean": "rimraf node_modules dist .eslintcache",
58
- "dev": "pnpm run build",
59
- "lint:attw": "attw --pack",
60
- "lint:eslint": "eslint ./src",
61
- "lint:eslint:fix": "eslint . --cache --concurrency auto --fix,",
62
- "lint:fix": "pnpm run lint:eslint:fix",
63
- "lint:package-json": "publint --strict",
64
- "lint:prettier": "prettier --config=.prettierrc.cjs --check .",
65
- "lint:prettier:fix": "prettier --config=.prettierrc.cjs --write .",
66
- "lint:types": "tsc --noEmit",
67
- "test": "vitest run --cache",
68
- "test:coverage": "vitest run --cache --coverage",
69
- "test:ui": "vitest --cache --ui --coverage.enabled=true",
70
- "test:watch": "vitest"
71
- },
72
- "dependencies": {
73
- "@babel/generator": "catalog:prod",
74
- "@babel/helper-validator-identifier": "catalog:prod",
75
- "@babel/parser": "catalog:prod",
76
- "@babel/types": "catalog:prod",
77
- "@visulima/tsconfig": "catalog:visulima",
78
- "ast-kit": "catalog:prod",
79
- "birpc": "catalog:prod",
80
- "magic-string": "catalog:utils",
81
- "obug": "catalog:prod",
82
- "oxc-resolver": "catalog:node",
83
- "oxc-transform": "catalog:dev"
23
+ {
24
+ "type": "consulting",
25
+ "url": "https://anolilab.com/support"
26
+ }
27
+ ],
28
+ "license": "MIT",
29
+ "author": "三咲智子 Kevin Deng <sxzz@sxzz.moe>",
30
+ "contributors": [
31
+ {
32
+ "name": "Daniel Bannert",
33
+ "email": "d.bannert@anolilab.de"
34
+ }
35
+ ],
36
+ "sideEffects": false,
37
+ "type": "module",
38
+ "exports": {
39
+ ".": {
40
+ "types": "./dist/index.ts",
41
+ "default": "./dist/index.js"
84
42
  },
85
- "devDependencies": {
86
- "@anolilab/eslint-config": "catalog:lint",
87
- "@anolilab/prettier-config": "catalog:lint",
88
- "@anolilab/semantic-release-pnpm": "catalog:cli",
89
- "@anolilab/semantic-release-preset": "catalog:cli",
90
- "@arethetypeswrong/cli": "catalog:dev",
91
- "@jridgewell/source-map": "catalog:test",
92
- "@sxzz/test-utils": "catalog:test",
93
- "@types/babel__generator": "catalog:types",
94
- "@types/debug": "catalog:types",
95
- "@types/node": "catalog:types",
96
- "@typescript/native-preview": "catalog:types",
97
- "@visulima/path": "catalog:visulima",
98
- "@volar/typescript": "catalog:tsc",
99
- "@vue/language-core": "catalog:frontend",
100
- "conventional-changelog-conventionalcommits": "catalog:dev",
101
- "diff": "catalog:dev",
102
- "eslint": "catalog:lint",
103
- "estree-walker": "catalog:dev",
104
- "prettier": "catalog:lint",
105
- "publint": "catalog:lint",
106
- "rollup": "catalog:build",
107
- "rollup-plugin-dts": "catalog:build",
108
- "tinyglobby": "catalog:node",
109
- "tsx": "catalog:script",
110
- "typescript": "catalog:tsc",
111
- "vitest": "catalog:test",
112
- "vue": "catalog:frontend",
113
- "vue-tsc": "catalog:tsc"
43
+ "./filename": {
44
+ "types": "./dist/filename.js",
45
+ "default": "./dist/filename.js"
114
46
  },
115
- "peerDependencies": {
116
- "@ts-macro/tsc": "catalog:tsc",
117
- "@typescript/native-preview": ">=7.0.0-dev.20250601.1",
118
- "rollup": ">=4.0.0",
119
- "typescript": "catalog:tsc",
120
- "vue-tsc": "catalog:tsc"
47
+ "./package.json": "./package.json"
48
+ },
49
+ "files": [
50
+ "CHANGELOG.md",
51
+ "README.md",
52
+ "dist"
53
+ ],
54
+ "dependencies": {
55
+ "@babel/generator": "7.29.1",
56
+ "@babel/helper-validator-identifier": "7.28.5",
57
+ "@babel/parser": "7.29.0",
58
+ "@babel/types": "7.29.0",
59
+ "@visulima/tsconfig": "2.1.3",
60
+ "ast-kit": "^2.2.0",
61
+ "birpc": "^4.0.0",
62
+ "magic-string": "0.30.21",
63
+ "obug": "2.1.1",
64
+ "oxc-resolver": "11.19.1",
65
+ "oxc-transform": "0.119.0"
66
+ },
67
+ "peerDependencies": {
68
+ "@ts-macro/tsc": "0.3.7",
69
+ "@typescript/native-preview": ">=7.0.0-dev.20250601.1",
70
+ "rollup": ">=4.0.0",
71
+ "typescript": "^5.9.3",
72
+ "vue-tsc": "3.2.5"
73
+ },
74
+ "peerDependenciesMeta": {
75
+ "@typescript/native-preview": {
76
+ "optional": true
121
77
  },
122
- "peerDependenciesMeta": {
123
- "@typescript/native-preview": {
124
- "optional": true
125
- },
126
- "rollup": {
127
- "optional": true
128
- },
129
- "typescript": {
130
- "optional": true
131
- },
132
- "vue-tsc": {
133
- "optional": true
134
- }
78
+ "rollup": {
79
+ "optional": true
135
80
  },
136
- "engines": {
137
- "node": ">=20.* <=25.*"
81
+ "typescript": {
82
+ "optional": true
138
83
  },
139
- "publishConfig": {
140
- "access": "public",
141
- "provenance": true
84
+ "vue-tsc": {
85
+ "optional": true
142
86
  }
143
- }
87
+ },
88
+ "engines": {
89
+ "node": ">=20.* <=25.*"
90
+ },
91
+ "publishConfig": {
92
+ "access": "public",
93
+ "provenance": true
94
+ }
95
+ }