gofish-graphics 0.0.1
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 +43 -0
- package/dist/index.js +7649 -0
- package/package.json +50 -0
package/README.md
ADDED
|
@@ -0,0 +1,43 @@
|
|
|
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
|
+
## License
|
|
42
|
+
|
|
43
|
+
MIT
|