pump-anomaly 0.1.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/LICENSE +21 -0
- package/README.md +678 -0
- package/build/index.cjs +2755 -0
- package/build/index.mjs +2680 -0
- package/package.json +58 -0
- package/types.d.ts +1346 -0
package/package.json
ADDED
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "pump-anomaly",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Detector of synchronized trading pump signals via author-cluster deduplication, with path-aware exit replay and liquidation-cascade detection.",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"trading",
|
|
7
|
+
"pump",
|
|
8
|
+
"pump-and-dump",
|
|
9
|
+
"stop-hunting",
|
|
10
|
+
"liquidation-cascade",
|
|
11
|
+
"trading-signals",
|
|
12
|
+
"trading-bot",
|
|
13
|
+
"backtest",
|
|
14
|
+
"anomaly-detection",
|
|
15
|
+
"crypto",
|
|
16
|
+
"cryptocurrency",
|
|
17
|
+
"quant",
|
|
18
|
+
"algotrading",
|
|
19
|
+
"typescript"
|
|
20
|
+
],
|
|
21
|
+
"type": "module",
|
|
22
|
+
"license": "MIT",
|
|
23
|
+
"main": "./build/index.cjs",
|
|
24
|
+
"module": "./build/index.mjs",
|
|
25
|
+
"types": "./types.d.ts",
|
|
26
|
+
"exports": {
|
|
27
|
+
".": {
|
|
28
|
+
"types": "./types.d.ts",
|
|
29
|
+
"import": "./build/index.mjs",
|
|
30
|
+
"require": "./build/index.cjs"
|
|
31
|
+
}
|
|
32
|
+
},
|
|
33
|
+
"files": [
|
|
34
|
+
"build",
|
|
35
|
+
"types.d.ts",
|
|
36
|
+
"README.md"
|
|
37
|
+
],
|
|
38
|
+
"scripts": {
|
|
39
|
+
"build": "rollup -c",
|
|
40
|
+
"test": "vitest run",
|
|
41
|
+
"test:watch": "vitest",
|
|
42
|
+
"prepublishOnly": "npm run build",
|
|
43
|
+
"coverage": "vitest run --coverage"
|
|
44
|
+
},
|
|
45
|
+
"peerDependencies": {
|
|
46
|
+
"typescript": "^5.3.0"
|
|
47
|
+
},
|
|
48
|
+
"devDependencies": {
|
|
49
|
+
"@rollup/plugin-typescript": "12.3.0",
|
|
50
|
+
"@types/node": "20.10.0",
|
|
51
|
+
"@vitest/coverage-v8": "1.6.1",
|
|
52
|
+
"rollup": "4.57.1",
|
|
53
|
+
"rollup-plugin-dts": "6.3.0",
|
|
54
|
+
"rollup-plugin-peer-deps-external": "2.2.4",
|
|
55
|
+
"tslib": "2.8.1",
|
|
56
|
+
"vitest": "1.6.1"
|
|
57
|
+
}
|
|
58
|
+
}
|