bybit-analysis 0.1.5
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 +400 -0
- package/bin/bybit-analysis.js +2 -0
- package/dist/index.js +8688 -0
- package/package.json +41 -0
package/package.json
ADDED
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "bybit-analysis",
|
|
3
|
+
"version": "0.1.5",
|
|
4
|
+
"description": "CLI for analyzing Bybit account data and printing schema-stable reports",
|
|
5
|
+
"module": "dist/index.js",
|
|
6
|
+
"type": "module",
|
|
7
|
+
"bin": {
|
|
8
|
+
"bybit-analysis": "./bin/bybit-analysis.js"
|
|
9
|
+
},
|
|
10
|
+
"files": [
|
|
11
|
+
"bin",
|
|
12
|
+
"dist",
|
|
13
|
+
"README.md"
|
|
14
|
+
],
|
|
15
|
+
"publishConfig": {
|
|
16
|
+
"access": "public",
|
|
17
|
+
"tag": "latest"
|
|
18
|
+
},
|
|
19
|
+
"engines": {
|
|
20
|
+
"bun": ">=1.3.11"
|
|
21
|
+
},
|
|
22
|
+
"scripts": {
|
|
23
|
+
"start": "bun run src/index.ts",
|
|
24
|
+
"check": "bunx tsc --noEmit",
|
|
25
|
+
"test": "bun test",
|
|
26
|
+
"test:watch": "bun test --watch",
|
|
27
|
+
"test:coverage": "bun test --coverage",
|
|
28
|
+
"build": "bun build src/index.ts --outdir dist --target bun",
|
|
29
|
+
"verify": "bun run check && bun run test && bun run build",
|
|
30
|
+
"prepublishOnly": "bun run build",
|
|
31
|
+
"validate:local-release": "bash scripts/validate-local-release.sh",
|
|
32
|
+
"audit:private-artifacts": "bash scripts/audit-private-artifacts.sh"
|
|
33
|
+
},
|
|
34
|
+
"devDependencies": {
|
|
35
|
+
"@types/bun": "latest",
|
|
36
|
+
"typescript": "^5.9.3"
|
|
37
|
+
},
|
|
38
|
+
"dependencies": {
|
|
39
|
+
"decimal.js": "^10.6.0"
|
|
40
|
+
}
|
|
41
|
+
}
|