@seanyao/roll 2.604.2 → 3.0.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/CHANGELOG.md +14 -0
- package/README.md +6 -0
- package/bin/roll +8 -1
- package/dist/roll.mjs +12875 -0
- package/lib/__pycache__/changelog_audit.cpython-314.pyc +0 -0
- package/lib/__pycache__/github_sync.cpython-314.pyc +0 -0
- package/lib/__pycache__/loop-fmt.cpython-314.pyc +0 -0
- package/lib/__pycache__/loop_result_eval.cpython-314.pyc +0 -0
- package/lib/__pycache__/loop_unstick.cpython-314.pyc +0 -0
- package/lib/__pycache__/model_prices.cpython-314.pyc +0 -0
- package/lib/__pycache__/prices_fetcher.cpython-314.pyc +0 -0
- package/lib/__pycache__/roll-home.cpython-314.pyc +0 -0
- package/lib/__pycache__/roll-loop-status.cpython-314.pyc +0 -0
- package/lib/__pycache__/roll_git.cpython-314.pyc +0 -0
- package/lib/__pycache__/roll_render.cpython-314.pyc +0 -0
- package/lib/__pycache__/slides-render.cpython-314.pyc +0 -0
- package/lib/agent_usage/__pycache__/__init__.cpython-314.pyc +0 -0
- package/lib/agent_usage/__pycache__/gemini.cpython-314.pyc +0 -0
- package/lib/agent_usage/__pycache__/kimi.cpython-314.pyc +0 -0
- package/lib/agent_usage/__pycache__/openai.cpython-314.pyc +0 -0
- package/lib/agent_usage/__pycache__/pi.cpython-314.pyc +0 -0
- package/lib/agent_usage/__pycache__/pi_emit.cpython-314.pyc +0 -0
- package/lib/agent_usage/__pycache__/qwen.cpython-314.pyc +0 -0
- package/package.json +20 -6
- package/lib/__pycache__/changelog_generate.cpython-314.pyc +0 -0
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,9 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@seanyao/roll",
|
|
3
|
-
"version": "
|
|
4
|
-
"description": "Roll
|
|
3
|
+
"version": "3.0.0",
|
|
4
|
+
"description": "Roll \u2014 Roll out features with AI agents",
|
|
5
|
+
"packageManager": "pnpm@11.1.3",
|
|
5
6
|
"scripts": {
|
|
6
|
-
"test": "bash
|
|
7
|
+
"test": "bash scripts/test-ts.sh",
|
|
8
|
+
"test:bats": "bash tests/run.sh",
|
|
9
|
+
"bundle": "node scripts/bundle.mjs",
|
|
10
|
+
"prepack": "pnpm -r build && pnpm bundle"
|
|
7
11
|
},
|
|
8
12
|
"keywords": [
|
|
9
13
|
"ai",
|
|
@@ -18,11 +22,12 @@
|
|
|
18
22
|
"url": "git+https://github.com/seanyao/roll.git"
|
|
19
23
|
},
|
|
20
24
|
"bin": {
|
|
21
|
-
"roll": "
|
|
25
|
+
"roll": "dist/roll.mjs"
|
|
22
26
|
},
|
|
23
27
|
"license": "MIT",
|
|
24
28
|
"author": "Sean Yao <sean.dlut@gmail.com>",
|
|
25
29
|
"files": [
|
|
30
|
+
"dist/",
|
|
26
31
|
"bin/",
|
|
27
32
|
"conventions/",
|
|
28
33
|
"lib/",
|
|
@@ -30,5 +35,14 @@
|
|
|
30
35
|
"template/",
|
|
31
36
|
"README.md",
|
|
32
37
|
"CHANGELOG.md"
|
|
33
|
-
]
|
|
34
|
-
|
|
38
|
+
],
|
|
39
|
+
"engines": {
|
|
40
|
+
"node": ">=22"
|
|
41
|
+
},
|
|
42
|
+
"devDependencies": {
|
|
43
|
+
"@types/node": "^25.9.1",
|
|
44
|
+
"esbuild": "^0.28.0",
|
|
45
|
+
"typescript": "^6.0.3",
|
|
46
|
+
"vitest": "^4.1.8"
|
|
47
|
+
}
|
|
48
|
+
}
|
|
Binary file
|