@waline/client 3.13.0 → 3.15.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@waline/client",
3
- "version": "3.13.0",
3
+ "version": "3.15.0",
4
4
  "description": "client for waline comment system",
5
5
  "keywords": [
6
6
  "blog",
@@ -22,10 +22,6 @@
22
22
  "dist"
23
23
  ],
24
24
  "type": "module",
25
- "main": "./dist/slim.js",
26
- "module": "./dist/slim.js",
27
- "browser": "./dist/waline.umd.js",
28
- "types": "./dist/slim.d.ts",
29
25
  "exports": {
30
26
  ".": {
31
27
  "types": "./dist/slim.d.ts",
@@ -59,32 +55,22 @@
59
55
  "publishConfig": {
60
56
  "provenance": true
61
57
  },
62
- "scripts": {
63
- "build": "pnpm rollup && pnpm style",
64
- "clean": "rimraf ./dist",
65
- "dev": "vite",
66
- "prepublishOnly": "pnpm clean && pnpm build",
67
- "rollup": "rollup -c rollup.config.ts --configPlugin esbuild",
68
- "style": "pnpm style:main && pnpm style:meta",
69
- "style:main": "sass ./src/styles/index.scss ./dist/waline.css --style=compressed",
70
- "style:meta": "sass ./src/styles/meta.scss ./dist/waline-meta.css --style=compressed"
71
- },
72
58
  "dependencies": {
73
- "@vueuse/core": "^14.2.1",
59
+ "@vueuse/core": "^14.3.0",
74
60
  "@waline/api": "1.1.0",
75
61
  "autosize": "^6.0.1",
76
- "marked": "^17.0.2",
77
- "marked-highlight": "^2.2.3",
62
+ "marked": "^18.0.4",
63
+ "marked-highlight": "^2.2.4",
78
64
  "recaptcha-v3": "^1.11.3",
79
- "vue": "^3.5.28"
65
+ "vue": "^3.5.34"
80
66
  },
81
67
  "devDependencies": {
82
- "@babel/core": "7.29.0",
83
- "@babel/preset-env": "7.29.0",
68
+ "@babel/core": "7.29.7",
69
+ "@babel/preset-env": "7.29.7",
84
70
  "@giphy/js-types": "5.1.0",
85
71
  "@types/autosize": "4.0.3",
86
- "@vitejs/plugin-vue": "6.0.4",
87
- "vite": "7.3.1"
72
+ "@vitejs/plugin-vue": "6.0.7",
73
+ "vite": "8.0.14"
88
74
  },
89
75
  "browserslist": {
90
76
  "production": [
@@ -102,6 +88,14 @@
102
88
  ]
103
89
  },
104
90
  "engines": {
105
- "node": ">=18"
91
+ "node": ">=22"
92
+ },
93
+ "scripts": {
94
+ "build": "pnpm run style && tsdown",
95
+ "clean": "rimraf ./dist",
96
+ "dev": "vite",
97
+ "style": "pnpm run style:main && pnpm run style:meta",
98
+ "style:main": "sass ./src/styles/index.scss ./dist/waline.css --style=compressed",
99
+ "style:meta": "sass ./src/styles/meta.scss ./dist/waline-meta.css --style=compressed"
106
100
  }
107
- }
101
+ }