gofish-graphics 0.0.22-nightly.20260114 → 0.0.22

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 (3) hide show
  1. package/README.md +53 -0
  2. package/dist/index.js +5546 -5804
  3. package/package.json +10 -15
package/README.md ADDED
@@ -0,0 +1,53 @@
1
+ # GoFish Graphics
2
+
3
+ A library for creating charts and graphics in JavaScript.
4
+
5
+ ## Installation
6
+
7
+ ```bash
8
+ npm install gofish-graphics
9
+ # or
10
+ pnpm add gofish-graphics
11
+ # or
12
+ yarn add gofish-graphics
13
+ ```
14
+
15
+ ## Usage
16
+
17
+ ```typescript
18
+ import /* your exported functions */ "gofish-graphics";
19
+
20
+ // Use the library functions here
21
+ ```
22
+
23
+ ## Development
24
+
25
+ This project uses [pnpm](https://pnpm.io) for package management.
26
+
27
+ ```bash
28
+ # Install dependencies
29
+ pnpm install
30
+
31
+ # Start development server
32
+ pnpm dev
33
+
34
+ # Build the library
35
+ pnpm build
36
+
37
+ # Preview the build
38
+ pnpm serve
39
+ ```
40
+
41
+ ## Publish
42
+
43
+ ```bash
44
+ # update version number
45
+ pnpm version patch
46
+
47
+ # publish to npm
48
+ pnpm publish
49
+ ```
50
+
51
+ ## License
52
+
53
+ MIT