@technomoron/agent-run 0.99.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/package.json ADDED
@@ -0,0 +1,44 @@
1
+ {
2
+ "name": "@technomoron/agent-run",
3
+ "version": "0.99.1",
4
+ "packageManager": "pnpm@10.28.1",
5
+ "bin": {
6
+ "agent-run": "dist/agent-run.js"
7
+ },
8
+ "files": [
9
+ "dist/",
10
+ "README.md",
11
+ "LICENSE",
12
+ "CHANGES"
13
+ ],
14
+ "repository": {
15
+ "type": "git",
16
+ "url": "git+https://github.com/technomoron/agent-run.git"
17
+ },
18
+ "scripts": {
19
+ "build": "tsc -p tsconfig.json",
20
+ "postbuild": "node -e \"require('node:fs').chmodSync('dist/agent-run.js', 0o755)\"",
21
+ "clean:dist": "rimraf ./dist/",
22
+ "cleanbuild": "run-s clean:dist build",
23
+ "prepack": "run-s build",
24
+ "test": "echo 'No tests for agent-run'",
25
+ "release": "bash ./scripts/release.sh",
26
+ "release:check": "bash ./scripts/release-check.sh",
27
+ "release:preflight": "pnpm cleanbuild && pnpm test && pnpm release:check -- --local",
28
+ "release:verify": "bash ./scripts/release-verify.sh"
29
+ },
30
+ "author": "Bjorn Erik Jacobsen",
31
+ "license": "MIT",
32
+ "copyright": "Copyright (c) 2026 Bjørn Erik Jacobsen / Technomoron.com",
33
+ "bugs": {
34
+ "url": "https://github.com/technomoron/agent-run/issues"
35
+ },
36
+ "homepage": "https://github.com/technomoron/agent-run#readme",
37
+ "devDependencies": {
38
+ "@types/node": "^20.19.11",
39
+ "npm-run-all": "^4.1.5",
40
+ "pnpm": "^10.28.1",
41
+ "rimraf": "^6.1.3",
42
+ "typescript": "^5.9.3"
43
+ }
44
+ }