@tachyon-gg/railway-deploy 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 (4) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +353 -0
  3. package/dist/index.js +39977 -0
  4. package/package.json +48 -0
package/package.json ADDED
@@ -0,0 +1,48 @@
1
+ {
2
+ "name": "@tachyon-gg/railway-deploy",
3
+ "version": "0.1.0",
4
+ "type": "module",
5
+ "main": "./dist/index.js",
6
+ "exports": {
7
+ ".": "./dist/index.js"
8
+ },
9
+ "bin": {
10
+ "railway-deploy": "./dist/index.js"
11
+ },
12
+ "files": [
13
+ "dist/"
14
+ ],
15
+ "scripts": {
16
+ "start": "bun run src/index.ts",
17
+ "build": "bun build src/index.ts --outdir dist --target node --format esm",
18
+ "postbuild": "printf '#!/usr/bin/env node\\n' | cat - dist/index.js > dist/tmp && mv dist/tmp dist/index.js",
19
+ "prepublishOnly": "bun run build && bun run test && bun run typecheck",
20
+ "typecheck": "tsc --noEmit",
21
+ "codegen": "graphql-codegen --config codegen.ts",
22
+ "test": "bun test --bail --test-name-pattern '^(?!Railway Integration)' test/",
23
+ "test:coverage": "bun test --bail --coverage --coverage-reporter=text --coverage-reporter=lcov --coverage-dir=coverage test/*.test.ts",
24
+ "test:integration": "bun test --bail --timeout 30000 --env-file .env.test test/integration/",
25
+ "test:all": "bun test --bail --timeout 30000 --env-file .env.test test/",
26
+ "lint": "biome check .",
27
+ "lint:fix": "biome check --write .",
28
+ "format": "biome format --write ."
29
+ },
30
+ "dependencies": {
31
+ "@graphql-typed-document-node/core": "^3.2.0",
32
+ "commander": "^14.0.3",
33
+ "dotenv": "^17.3.1",
34
+ "graphql": "^16.10.0",
35
+ "graphql-request": "^7.1.2",
36
+ "yaml": "^2.7.0",
37
+ "zod": "^4.3.6"
38
+ },
39
+ "devDependencies": {
40
+ "@biomejs/biome": "^2.4.7",
41
+ "@graphql-codegen/cli": "^5.0.3",
42
+ "@graphql-codegen/typed-document-node": "^6.1.7",
43
+ "@graphql-codegen/typescript": "^4.1.2",
44
+ "@graphql-codegen/typescript-operations": "^4.4.0",
45
+ "@types/bun": "latest",
46
+ "typescript": "^5.7.0"
47
+ }
48
+ }