@spfunctions/cli 1.7.37 → 1.7.38
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/dist/package.json +52 -0
- package/package.json +2 -2
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@spfunctions/cli",
|
|
3
|
+
"version": "1.7.38",
|
|
4
|
+
"mcpName": "io.github.spfunctions/simplefunctions",
|
|
5
|
+
"description": "Prediction market intelligence CLI. Causal thesis model, 24/7 Kalshi/Polymarket scan, live orderbook, edge detection. Interactive agent mode with tool calling.",
|
|
6
|
+
"bin": {
|
|
7
|
+
"sf": "./dist/index.js"
|
|
8
|
+
},
|
|
9
|
+
"scripts": {
|
|
10
|
+
"build": "node ./node_modules/typescript/bin/tsc && node ./node_modules/@vercel/ncc/dist/ncc/cli.js build dist/index.js -o dist-bundle --minify --no-source-map-register -e node:fs -e node:path -e node:os -e node:crypto -e node:child_process -e node:readline -e node:events -e node:process -e node:stream -e node:buffer -e node:net -e node:http -e node:https -e node:tty -e node:util -e node:url -e node:assert && node scripts/fix-node-imports.js dist-bundle && rm -rf dist && mv dist-bundle dist && cp package.json dist/package.json",
|
|
11
|
+
"build:dev": "node ./node_modules/typescript/bin/tsc",
|
|
12
|
+
"dev": "tsx src/index.ts",
|
|
13
|
+
"test": "vitest run",
|
|
14
|
+
"test:watch": "vitest",
|
|
15
|
+
"prepublishOnly": "npm run build"
|
|
16
|
+
},
|
|
17
|
+
"dependencies": {
|
|
18
|
+
"@mariozechner/pi-agent-core": "^0.57.1",
|
|
19
|
+
"@mariozechner/pi-ai": "^0.57.1",
|
|
20
|
+
"@mariozechner/pi-tui": "^0.57.1",
|
|
21
|
+
"commander": "^12.0.0",
|
|
22
|
+
"grammy": "^1.41.1",
|
|
23
|
+
"kalshi-typescript": "^3.9.0"
|
|
24
|
+
},
|
|
25
|
+
"devDependencies": {
|
|
26
|
+
"@types/node": "^20.0.0",
|
|
27
|
+
"@vercel/ncc": "^0.38.4",
|
|
28
|
+
"terser": "^5.46.1",
|
|
29
|
+
"tsx": "^4.0.0",
|
|
30
|
+
"typescript": "^5.0.0",
|
|
31
|
+
"vitest": "^4.1.0"
|
|
32
|
+
},
|
|
33
|
+
"files": [
|
|
34
|
+
"dist"
|
|
35
|
+
],
|
|
36
|
+
"keywords": [
|
|
37
|
+
"prediction-market",
|
|
38
|
+
"kalshi",
|
|
39
|
+
"polymarket",
|
|
40
|
+
"trading",
|
|
41
|
+
"cli",
|
|
42
|
+
"agent",
|
|
43
|
+
"orderbook",
|
|
44
|
+
"market-intelligence",
|
|
45
|
+
"edge-detection"
|
|
46
|
+
],
|
|
47
|
+
"license": "MIT",
|
|
48
|
+
"repository": {
|
|
49
|
+
"type": "git",
|
|
50
|
+
"url": "https://github.com/spfunctions/simplefunctions-cli"
|
|
51
|
+
}
|
|
52
|
+
}
|
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@spfunctions/cli",
|
|
3
|
-
"version": "1.7.
|
|
3
|
+
"version": "1.7.38",
|
|
4
4
|
"mcpName": "io.github.spfunctions/simplefunctions",
|
|
5
5
|
"description": "Prediction market intelligence CLI. Causal thesis model, 24/7 Kalshi/Polymarket scan, live orderbook, edge detection. Interactive agent mode with tool calling.",
|
|
6
6
|
"bin": {
|
|
7
7
|
"sf": "./dist/index.js"
|
|
8
8
|
},
|
|
9
9
|
"scripts": {
|
|
10
|
-
"build": "node ./node_modules/typescript/bin/tsc && node ./node_modules/@vercel/ncc/dist/ncc/cli.js build dist/index.js -o dist-bundle --minify --no-source-map-register -e node:fs -e node:path -e node:os -e node:crypto -e node:child_process -e node:readline -e node:events -e node:process -e node:stream -e node:buffer -e node:net -e node:http -e node:https -e node:tty -e node:util -e node:url -e node:assert && node scripts/fix-node-imports.js dist-bundle && rm -rf dist && mv dist-bundle dist",
|
|
10
|
+
"build": "node ./node_modules/typescript/bin/tsc && node ./node_modules/@vercel/ncc/dist/ncc/cli.js build dist/index.js -o dist-bundle --minify --no-source-map-register -e node:fs -e node:path -e node:os -e node:crypto -e node:child_process -e node:readline -e node:events -e node:process -e node:stream -e node:buffer -e node:net -e node:http -e node:https -e node:tty -e node:util -e node:url -e node:assert && node scripts/fix-node-imports.js dist-bundle && rm -rf dist && mv dist-bundle dist && cp package.json dist/package.json",
|
|
11
11
|
"build:dev": "node ./node_modules/typescript/bin/tsc",
|
|
12
12
|
"dev": "tsx src/index.ts",
|
|
13
13
|
"test": "vitest run",
|