@robbeverhelst/do 0.0.1
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/README.md +44 -0
- package/dist/do.js +21948 -0
- package/package.json +41 -0
package/package.json
ADDED
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@robbeverhelst/do",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"private": false,
|
|
5
|
+
"description": "do — the agent-drivable CLI over the public /api/v1 surface",
|
|
6
|
+
"type": "module",
|
|
7
|
+
"repository": {
|
|
8
|
+
"type": "git",
|
|
9
|
+
"url": "git+https://github.com/robbeverhelst/do.git",
|
|
10
|
+
"directory": "apps/cli"
|
|
11
|
+
},
|
|
12
|
+
"homepage": "https://github.com/robbeverhelst/do/tree/main/apps/cli",
|
|
13
|
+
"bin": {
|
|
14
|
+
"do": "./dist/do.js"
|
|
15
|
+
},
|
|
16
|
+
"files": [
|
|
17
|
+
"dist",
|
|
18
|
+
"README.md"
|
|
19
|
+
],
|
|
20
|
+
"publishConfig": {
|
|
21
|
+
"access": "public"
|
|
22
|
+
},
|
|
23
|
+
"scripts": {
|
|
24
|
+
"dev": "bun run src/index.ts",
|
|
25
|
+
"start": "bun run src/index.ts",
|
|
26
|
+
"bundle": "bun build src/index.ts --target bun --outfile dist/do.js",
|
|
27
|
+
"compile": "bun build --compile src/index.ts --outfile do",
|
|
28
|
+
"prepublishOnly": "bun run bundle",
|
|
29
|
+
"typecheck": "tsc --noEmit",
|
|
30
|
+
"build": "tsc --noEmit",
|
|
31
|
+
"test": "bun test",
|
|
32
|
+
"test:coverage": "bun test --coverage"
|
|
33
|
+
},
|
|
34
|
+
"devDependencies": {
|
|
35
|
+
"@do/schema": "workspace:*",
|
|
36
|
+
"@types/bun": "^1.3.0",
|
|
37
|
+
"@types/node": "^25.9.3",
|
|
38
|
+
"ulidx": "^2.4.1",
|
|
39
|
+
"zod": "^4.4.3"
|
|
40
|
+
}
|
|
41
|
+
}
|