@taleshape/shaper 0.1.3 → 0.2.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 ADDED
@@ -0,0 +1,25 @@
1
+ Shaper is a minimal data platform built on top of DuckDB and NATS to build and embed analytics dashboards into your software.
2
+
3
+ This NPM package makes it easy to install and run Shaper locally for development purposes.
4
+
5
+ You can run Shaper directly via npx:
6
+ ```bash
7
+ npx @taleshape/shaper
8
+ ```
9
+
10
+ Or you can install it globally:
11
+ ```bash
12
+ npm install -g @taleshape/shaper
13
+ ```
14
+
15
+ Then run it:
16
+ ```bash
17
+ shaper
18
+ ```
19
+
20
+ To run Shaper in production, we recommend using Docker.
21
+
22
+ Find more detailed installation and usage instructions in the documentation:
23
+
24
+ https://taleshape.com/shaper/docs/installing-shaper/
25
+
package/bin/SHA256SUMS CHANGED
@@ -1,4 +1,4 @@
1
- 3da468d156101dd6e822f68bd824c8bf886f66c7b612dac02f8b4a94e591bead shaper-linux-arm64
2
- 47a702931428bbbe36bdb889340daeeee564eea6dc601a46bd4ca0402dc055aa shaper-darwin-amd64
3
- da2a4bb02f9613775c35bc20cb32164303fa39cb4244852d48570f7cb1cfa7a3 shaper-darwin-arm64
4
- f7248e7fd8c0efafe9b91d81ed528d3f76c2be6dc2ff2227be7276b4f5fbafc6 shaper-linux-amd64
1
+ 2823602acfd9c181140193bb08e6ec4c54f79c57be7e2fa91812e74430f178de shaper-darwin-amd64
2
+ 5563b5ba978ec35cf544ccbb8ac9d32e44833a5cd74c76ff3c92ca947c8a9af0 shaper-linux-amd64
3
+ 9f90250a6564c29c04a4251c0ff6bb28bfd34a541d3681cbfbea409c45f587e1 shaper-darwin-arm64
4
+ dc56bf09f04cd37a32fb78fb777744cfc54af7c8ac0ac2bd3106b18344bb901b shaper-linux-arm64
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@taleshape/shaper",
3
- "version": "0.1.3",
3
+ "version": "0.2.0",
4
4
  "description": "Minimal Embedded Analytics and Data Platform",
5
5
  "main": "index.js",
6
6
  "bin": {
@@ -12,6 +12,7 @@
12
12
  },
13
13
  "files": [
14
14
  "bin",
15
+ "README.md",
15
16
  "index.js",
16
17
  "install.js",
17
18
  "uninstall.js"