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/README.md CHANGED
@@ -3,10 +3,16 @@
3
3
  > A multilingual dictionary of software development terms
4
4
 
5
5
  [![npm version](https://img.shields.io/npm/v/dev-dict.svg)](https://www.npmjs.com/package/dev-dict)
6
+ [![npm downloads](https://img.shields.io/npm/dm/dev-dict.svg)](https://www.npmjs.com/package/dev-dict)
7
+ [![Bundle size](https://img.shields.io/bundlephobia/minzip/dev-dict)](https://bundlephobia.com/package/dev-dict)
6
8
  [![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](https://opensource.org/licenses/MIT)
9
+ [![TypeScript](https://img.shields.io/badge/TypeScript-5.9-blue?logo=typescript)](https://www.typescriptlang.org/)
10
+ [![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg)](./CONTRIBUTING.md)
7
11
 
8
12
  **dev-dict** provides an exhaustive, community-driven collection of software industry terms with clear explanations in multiple languages. Perfect for developers, technical writers, educators, and anyone building multilingual developer tools.
9
13
 
14
+ **[🚀 View Live Demo](https://kyco.github.io/dev-dict/)**
15
+
10
16
 
11
17
  ## Features
12
18
 
@@ -175,12 +181,18 @@ Please read our [Contributing Guide](./CONTRIBUTING.md) to get started.
175
181
  # Install dependencies
176
182
  pnpm install
177
183
 
178
- # Start dev server (serves examples/)
179
- pnpm dev
180
-
181
184
  # Build library
182
185
  pnpm build
183
186
 
187
+ # Run demo site locally
188
+ pnpm demo:dev
189
+
190
+ # Build demo site
191
+ pnpm demo:build
192
+
193
+ # Preview demo build
194
+ pnpm demo:preview
195
+
184
196
  # Lint code
185
197
  npx eslint .
186
198