vite-plugin-lingo 0.0.2 → 0.0.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 (1) hide show
  1. package/package.json +10 -3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vite-plugin-lingo",
3
- "version": "0.0.2",
3
+ "version": "0.0.3",
4
4
  "description": "Visual translation editor for .po files in Vite projects",
5
5
  "license": "AGPL-3.0-or-later",
6
6
  "author": "Michael-Obele",
@@ -9,7 +9,8 @@
9
9
  "url": "git+https://github.com/Michael-Obele/vite-plugin-lingo.git"
10
10
  },
11
11
  "publishConfig": {
12
- "access": "public"
12
+ "access": "public",
13
+ "provenance": true
13
14
  },
14
15
  "scripts": {
15
16
  "dev": "bun run build:ui && concurrently -n main,ui -c blue,green \"vite dev\" \"vite build --config vite.ui.config.ts --watch\"",
@@ -29,7 +30,8 @@
29
30
  "check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
30
31
  "format": "prettier --write .",
31
32
  "lint": "prettier --check .",
32
- "prepublishOnly": "echo 'Build will run via prepack'"
33
+ "prepublishOnly": "echo 'Build will run via prepack'",
34
+ "release": "semantic-release"
33
35
  },
34
36
  "files": [
35
37
  "dist",
@@ -86,6 +88,11 @@
86
88
  "svelte-check": "^4.3.4",
87
89
  "tailwindcss": "^4.1.17",
88
90
  "tsup": "^8.5.1",
91
+ "semantic-release": "^25.0.2",
92
+ "@semantic-release/changelog": "^6.0.3",
93
+ "@semantic-release/git": "^10.0.1",
94
+ "@semantic-release/commit-analyzer": "^13.0.1",
95
+ "@semantic-release/release-notes-generator": "^14.1.0",
89
96
  "typescript": "^5.9.3",
90
97
  "vite": "^7.2.2"
91
98
  },