defuss-astro 1.5.0 → 1.6.0

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.
package/README.md CHANGED
@@ -35,7 +35,7 @@ If you've arrived here to add `defuss` to your Astro project, you're just two st
35
35
 
36
36
  ```bash
37
37
  # install a decent package manager
38
- npm i -g pnpm@^9.13.2
38
+ npm i -g bun@^1.3.9
39
39
 
40
40
  # from your project root folder, add defuss-astro to the devDependencies
41
41
  npm install --save-dev defuss-astro
package/dist/client.cjs CHANGED
File without changes
package/dist/client.mjs CHANGED
File without changes
package/dist/index.cjs CHANGED
File without changes
package/dist/index.mjs CHANGED
File without changes
package/dist/server.cjs CHANGED
File without changes
package/dist/server.mjs CHANGED
File without changes
package/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "defuss-astro",
3
- "version": "1.5.0",
3
+ "version": "1.6.0",
4
4
  "type": "module",
5
5
  "publishConfig": {
6
6
  "access": "public"
7
7
  },
8
8
  "license": "MIT",
9
- "description": "defuss integration for Astro",
9
+ "description": "defuss integration with Astro",
10
10
  "keywords": [
11
11
  "jsx",
12
12
  "render",
@@ -19,8 +19,8 @@
19
19
  "type": "git"
20
20
  },
21
21
  "scripts": {
22
- "clean": "rm -rf ./dist && rm -rf ./node_modules/.pnpm",
23
- "prebuild": "pnpm run clean",
22
+ "clean": "rm -rf ./dist && rm -rf ./node_modules/.bun",
23
+ "prebuild": "bun run clean",
24
24
  "build": "pkgroll",
25
25
  "postbuild": "tsx ./scripts/finalize-build.ts"
26
26
  },
@@ -66,20 +66,22 @@
66
66
  ],
67
67
  "devDependencies": {
68
68
  "pkgroll": "^2.5.1",
69
- "typescript": "^5.6.3",
70
- "tsx": "^4.19.2"
69
+ "tsx": "^4.19.2",
70
+ "typescript": "^5.6.3"
71
71
  },
72
72
  "engines": {
73
73
  "node": "^18.17.1 || ^20.3.0 || >=21.0.0"
74
74
  },
75
75
  "dependencies": {
76
- "defuss": "^2.1.10",
77
76
  "@swc/core": "^1.10.2",
78
- "astro": "^5.16.11",
79
- "vite": "^6.4.1",
80
77
  "fast-glob": "^3.3.3",
81
- "svgo": "^4.0.0",
78
+ "file-type": "^21.3.0",
82
79
  "purgecss": "^7.0.2",
83
- "file-type": "^21.3.0"
80
+ "svgo": "^4.0.0"
81
+ },
82
+ "peerDependencies": {
83
+ "defuss": "^3.0.0",
84
+ "astro": "^5.0.0",
85
+ "vite": "^6.0.0"
84
86
  }
85
- }
87
+ }