@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/package.json CHANGED
@@ -1,9 +1,13 @@
1
1
  {
2
2
  "name": "@seanyao/roll",
3
- "version": "2.604.2",
4
- "description": "Roll Roll out features with AI agents",
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 tests/run.sh"
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": "bin/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
+ }