@humanlayer/rpi 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.
Files changed (2) hide show
  1. package/dist/rpi +0 -0
  2. package/package.json +43 -0
package/dist/rpi ADDED
Binary file
package/package.json ADDED
@@ -0,0 +1,43 @@
1
+ {
2
+ "name": "@humanlayer/rpi",
3
+ "version": "0.1.0",
4
+ "description": "Research-Plan-Implement workflow CLI",
5
+ "type": "module",
6
+ "bin": {
7
+ "rpi": "dist/rpi"
8
+ },
9
+ "files": [
10
+ "dist/rpi",
11
+ "README.md"
12
+ ],
13
+ "scripts": {
14
+ "prepack": "rm -rf dist && bun run build",
15
+ "build": "bun build ./src/index.ts --compile --target=bun --outfile=dist/rpi",
16
+ "build:macos": "bun build ./src/index.ts --compile --target=bun-darwin-arm64 --outfile=dist/rpi",
17
+ "build:linux": "bun build ./src/index.ts --compile --target=bun-linux-x64 --outfile=dist/rpi",
18
+ "dev": "bun build ./src/index.ts --compile --watch --target=bun --outfile=dist/rpi",
19
+ "start": "bun run src/index.ts"
20
+ },
21
+ "dependencies": {
22
+ "@humanlayer/linear-cli": "0.1.0",
23
+ "@linear/sdk": "^29.0.0",
24
+ "chalk": "^5.4.1",
25
+ "commander": "^14.0.0"
26
+ },
27
+ "devDependencies": {
28
+ "@types/node": "^24.9.1",
29
+ "typescript": "^5.8.3"
30
+ },
31
+ "engines": {
32
+ "node": ">=16"
33
+ },
34
+ "keywords": [
35
+ "cli",
36
+ "research",
37
+ "planning",
38
+ "workflow",
39
+ "rpi"
40
+ ],
41
+ "author": "HumanLayer Authors",
42
+ "license": "Apache-2.0"
43
+ }