gofish-graphics 0.0.21 → 0.0.22-nightly.20260114
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/dist/index.js +5812 -5554
- package/package.json +15 -10
- package/README.md +0 -53
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "gofish-graphics",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.22-nightly.20260114",
|
|
4
4
|
"description": "A library for creating charts",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -25,6 +25,19 @@
|
|
|
25
25
|
],
|
|
26
26
|
"author": "Your Name",
|
|
27
27
|
"license": "MIT",
|
|
28
|
+
"repository": {
|
|
29
|
+
"type": "git",
|
|
30
|
+
"url": "https://github.com/starfish-graphics/gofish-graphics"
|
|
31
|
+
},
|
|
32
|
+
"scripts": {
|
|
33
|
+
"start": "vite",
|
|
34
|
+
"dev": "vite",
|
|
35
|
+
"build": "vite build",
|
|
36
|
+
"serve": "vite preview",
|
|
37
|
+
"prepublishOnly": "pnpm run build",
|
|
38
|
+
"storybook": "storybook dev -p 6006",
|
|
39
|
+
"build-storybook": "storybook build"
|
|
40
|
+
},
|
|
28
41
|
"devDependencies": {
|
|
29
42
|
"@storybook/addon-docs": "^9.1.6",
|
|
30
43
|
"@storybook/html": "^9.1.6",
|
|
@@ -52,13 +65,5 @@
|
|
|
52
65
|
},
|
|
53
66
|
"peerDependencies": {
|
|
54
67
|
"solid-js": "^1.9.5"
|
|
55
|
-
},
|
|
56
|
-
"scripts": {
|
|
57
|
-
"start": "vite",
|
|
58
|
-
"dev": "vite",
|
|
59
|
-
"build": "vite build",
|
|
60
|
-
"serve": "vite preview",
|
|
61
|
-
"storybook": "storybook dev -p 6006",
|
|
62
|
-
"build-storybook": "storybook build"
|
|
63
68
|
}
|
|
64
|
-
}
|
|
69
|
+
}
|
package/README.md
DELETED
|
@@ -1,53 +0,0 @@
|
|
|
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
|