tsichart-core 2.0.0-beta.1 → 2.0.0-beta.2

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 (2) hide show
  1. package/README.md +8 -8
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # @tsichart/core
1
+ # tsichart-core
2
2
 
3
3
  Framework-agnostic time series charting library for building interactive data visualizations.
4
4
 
@@ -15,18 +15,18 @@ Framework-agnostic time series charting library for building interactive data vi
15
15
  ## Installation
16
16
 
17
17
  ```bash
18
- npm install @tsichart/core
18
+ npm install tsichart-core
19
19
  # or
20
- pnpm add @tsichart/core
20
+ pnpm add tsichart-core
21
21
  # or
22
- yarn add @tsichart/core
22
+ yarn add tsichart-core
23
23
  ```
24
24
 
25
25
  ## Quick Start
26
26
 
27
27
  ```typescript
28
- import { LineChart } from '@tsichart/core';
29
- import '@tsichart/core/styles';
28
+ import { LineChart } from 'tsichart-core';
29
+ import 'tsichart-core/styles';
30
30
 
31
31
  // Create a container element
32
32
  const container = document.getElementById('chart-container');
@@ -68,8 +68,8 @@ chart.render(data, options, aggregateExpressionOptions);
68
68
  ## Usage with Frameworks
69
69
 
70
70
  For framework-specific wrappers, see:
71
- - **React**: `@tsichart/react`
72
- - **Vue**: `@tsichart/vue`
71
+ - **React**: `tsichart-react`
72
+ - **Vue**: `tsichart-vue`
73
73
 
74
74
  ## Documentation
75
75
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tsichart-core",
3
- "version": "2.0.0-beta.1",
3
+ "version": "2.0.0-beta.2",
4
4
  "description": "Framework-agnostic time series charting library - Core package",
5
5
  "keywords": [
6
6
  "timeseries",