dev-dict 0.5.0 → 0.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dev-dict",
3
- "version": "0.5.0",
3
+ "version": "0.6.0",
4
4
  "description": "A dictionary of software related terms. Supports multiple languages.",
5
5
  "author": "Cornelius Weidmann <cornelius@kyco.io> (https://kyco.io)",
6
6
  "license": "MIT",
@@ -43,8 +43,10 @@
43
43
  "provenance": true
44
44
  },
45
45
  "scripts": {
46
- "dev": "vite",
47
46
  "build": "vite build",
47
+ "demo:dev": "cd demo && pnpm dev",
48
+ "demo:build": "pnpm build && cd demo && pnpm build",
49
+ "demo:preview": "cd demo && pnpm preview",
48
50
  "docs:generate": "pnpm build && tsx scripts/generate-docs.ts",
49
51
  "prepublishOnly": "pnpm docs:generate",
50
52
  "test": "echo \"This project does not have any tests which can be run yet...\"",