unplugin-atscript 0.1.1 → 0.1.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/dist/index.d.ts +2 -1
  2. package/package.json +3 -3
package/dist/index.d.ts CHANGED
@@ -9,4 +9,5 @@ interface atscriptPluginOptions {
9
9
  }
10
10
  declare const asPlugin: unplugin.UnpluginInstance<atscriptPluginOptions | undefined, boolean>;
11
11
 
12
- export { asPlugin, type atscriptPluginOptions, asPlugin as default };
12
+ export { asPlugin, asPlugin as default };
13
+ export type { atscriptPluginOptions };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "unplugin-atscript",
3
- "version": "0.1.1",
3
+ "version": "0.1.3",
4
4
  "description": "Atscript: Configuration and build plugins.",
5
5
  "type": "module",
6
6
  "main": "dist/index.mjs",
@@ -42,8 +42,8 @@
42
42
  "vitest": "3.2.4"
43
43
  },
44
44
  "peerDependencies": {
45
- "@atscript/core": "^0.1.1",
46
- "@atscript/typescript": "^0.1.1"
45
+ "@atscript/core": "^0.1.3",
46
+ "@atscript/typescript": "^0.1.3"
47
47
  },
48
48
  "scripts": {
49
49
  "pub": "pnpm publish --access public",