@nshiab/simple-data-analysis-core 0.0.15 → 0.0.17
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 +24 -3
- package/package.json +2 -1
package/README.md
CHANGED
|
@@ -31,13 +31,34 @@ check the
|
|
|
31
31
|
|
|
32
32
|
## Installation
|
|
33
33
|
|
|
34
|
+
The library is available on
|
|
35
|
+
[JSR](https://jsr.io/@nshiab/simple-data-analysis-core) and
|
|
36
|
+
[NPM](https://www.npmjs.com/package/@nshiab/simple-data-analysis-core).
|
|
37
|
+
|
|
34
38
|
```bash
|
|
35
|
-
# Deno
|
|
39
|
+
# Deno
|
|
36
40
|
deno add jsr:@nshiab/simple-data-analysis-core
|
|
37
41
|
|
|
38
42
|
# Node.js
|
|
39
|
-
|
|
43
|
+
npm i @nshiab/simple-data-analysis-core
|
|
44
|
+
|
|
45
|
+
# Bun
|
|
46
|
+
bun add @nshiab/simple-data-analysis-core
|
|
47
|
+
```
|
|
48
|
+
|
|
49
|
+
## Quick setup
|
|
50
|
+
|
|
51
|
+
To quickly set up a data project with essential folders, configurations, and
|
|
52
|
+
documentation for AI agents, you can use
|
|
53
|
+
[@nshiab/setup-data-project](https://github.com/nshiab/setup-data-project).
|
|
54
|
+
|
|
55
|
+
```bash
|
|
56
|
+
# Deno
|
|
57
|
+
deno run -A jsr:@nshiab/setup-data-project
|
|
58
|
+
|
|
59
|
+
# Node
|
|
60
|
+
npx @nshiab/setup-data-project
|
|
40
61
|
|
|
41
62
|
# Bun
|
|
42
|
-
bunx
|
|
63
|
+
bunx @nshiab/setup-data-project
|
|
43
64
|
```
|
package/package.json
CHANGED
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nshiab/simple-data-analysis-core",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.17",
|
|
4
4
|
"description": "The core functionalities of the simple-data-analysis library, with only one dependency: DuckDB.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
7
7
|
"url": "https://github.com/nshiab/simple-data-analysis-core"
|
|
8
8
|
},
|
|
9
|
+
"license": "MIT",
|
|
9
10
|
"main": "./script/index.js",
|
|
10
11
|
"module": "./esm/index.js",
|
|
11
12
|
"exports": {
|