datly 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 +2986 -0
- package/dist/datly.umd.js +1 -0
- package/package.json +51 -0
package/package.json
ADDED
@@ -0,0 +1,51 @@
|
|
1
|
+
{
|
2
|
+
"name": "datly",
|
3
|
+
"version": "0.0.1",
|
4
|
+
"description": "A JavaScript toolkit for data science, statistics, and machine learning in the browser or Node.js.",
|
5
|
+
"keywords": [
|
6
|
+
"data-science",
|
7
|
+
"statistics",
|
8
|
+
"machine-learning",
|
9
|
+
"analytics",
|
10
|
+
"math",
|
11
|
+
"d3",
|
12
|
+
"data-visualization",
|
13
|
+
"toolkit",
|
14
|
+
"library",
|
15
|
+
"js"
|
16
|
+
],
|
17
|
+
"license": "MIT",
|
18
|
+
"author": {
|
19
|
+
"name": "Vinícius Barreto",
|
20
|
+
"email": "vinicius@example.com",
|
21
|
+
"url": "https://github.com/vbfs"
|
22
|
+
},
|
23
|
+
"repository": {
|
24
|
+
"type": "git",
|
25
|
+
"url": "https://github.com/vbfs/datly"
|
26
|
+
},
|
27
|
+
"homepage": "https://github.com/vbfs/datly#readme",
|
28
|
+
"bugs": {
|
29
|
+
"url": "https://github.com/vbfs/datly/issues"
|
30
|
+
},
|
31
|
+
"type": "module",
|
32
|
+
"main": "dist/datly.umd.js",
|
33
|
+
"unpkg": "dist/datly.umd.js",
|
34
|
+
"scripts": {
|
35
|
+
"build": "microbundle build --entry src/index.js --output dist/datly.umd.js --name Datly --format umd --compress --no-sourcemap",
|
36
|
+
"dev": "microbundle watch --entry src/index.js --output dist/datly.umd.js --name Datly --format umd",
|
37
|
+
"prepublishOnly": "npm run build"
|
38
|
+
},
|
39
|
+
"devDependencies": {
|
40
|
+
"d3": "^7.9.0",
|
41
|
+
"microbundle": "^0.15.1"
|
42
|
+
},
|
43
|
+
"files": [
|
44
|
+
"dist",
|
45
|
+
"README.md",
|
46
|
+
"LICENSE"
|
47
|
+
],
|
48
|
+
"engines": {
|
49
|
+
"node": ">=14"
|
50
|
+
}
|
51
|
+
}
|