-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.54 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.54 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "@launchapp-dev/animus-environment-railway",
"version": "0.4.11",
"description": "Railway ephemeral-container execution-environment plugin for Animus 0.7. Prepares a Railway service from the Animus base image via the Railway GraphQL API, has the container dial home over an outbound WebSocket (animus-env-transport), runs harness commands through that relay (buffered + streaming), and deletes the service on teardown. Built on animus-environment-base.",
"license": "Elastic-2.0",
"type": "module",
"main": "./dist/index.js",
"bin": {
"animus-environment-railway": "./dist/index.js"
},
"files": [
"dist",
"plugin.toml",
"README.md",
"INTEGRATION.md",
"LICENSE"
],
"engines": {
"node": ">=20"
},
"scripts": {
"build": "tsc",
"prepare": "tsc",
"typecheck": "tsc --noEmit",
"start": "node dist/index.js",
"test": "vitest run",
"clean": "rm -rf dist coverage",
"bundle": "node scripts/build.mjs",
"release": "node scripts/release.mjs"
},
"dependencies": {
"@launchapp-dev/animus-env-transport": "file:../animus-env-transport",
"@launchapp-dev/animus-environment-base": "file:../animus-environment-base"
},
"devDependencies": {
"@types/node": "^20.12.0",
"esbuild": "^0.24.2",
"typescript": "^5.5.0",
"vitest": "^1.6.0"
},
"repository": {
"type": "git",
"url": "https://github.com/launchapp-dev/animus-environment-railway"
},
"keywords": [
"animus",
"plugin",
"environment",
"railway"
],
"author": "launchapp-dev"
}