agentscale 0.1.1 → 0.1.2
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 +15 -3
package/package.json
CHANGED
|
@@ -1,7 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "agentscale",
|
|
3
|
-
"version": "0.1.
|
|
4
|
-
"description": "Deploy
|
|
3
|
+
"version": "0.1.2",
|
|
4
|
+
"description": "Deploy web apps and APIs to a public URL with a single command.",
|
|
5
|
+
"repository": {
|
|
6
|
+
"type": "git",
|
|
7
|
+
"url": "git+https://github.com/jpbonch/agentscale.git"
|
|
8
|
+
},
|
|
9
|
+
"homepage": "https://github.com/jpbonch/agentscale#readme",
|
|
10
|
+
"bugs": {
|
|
11
|
+
"url": "https://github.com/jpbonch/agentscale/issues"
|
|
12
|
+
},
|
|
5
13
|
"type": "module",
|
|
6
14
|
"bin": {
|
|
7
15
|
"agentscale": "dist/index.js"
|
|
@@ -11,12 +19,16 @@
|
|
|
11
19
|
],
|
|
12
20
|
"scripts": {
|
|
13
21
|
"dev": "bun --watch src/index.ts",
|
|
14
|
-
"build": "tsc -p tsconfig.json",
|
|
22
|
+
"build": "npx tsc -p tsconfig.json",
|
|
15
23
|
"prepublishOnly": "npm run build",
|
|
16
24
|
"start": "node dist/index.js"
|
|
17
25
|
},
|
|
18
26
|
"dependencies": {
|
|
19
27
|
"commander": "^13.0.0",
|
|
20
28
|
"dotenv": "^17.3.1"
|
|
29
|
+
},
|
|
30
|
+
"devDependencies": {
|
|
31
|
+
"@types/node": "^25.2.3",
|
|
32
|
+
"typescript": "^5.9.3"
|
|
21
33
|
}
|
|
22
34
|
}
|