@colony2/c2j 0.0.1 → 0.0.4

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 CHANGED
@@ -1,13 +1,92 @@
1
1
  {
2
2
  "name": "@colony2/c2j",
3
- "version": "0.0.1",
4
- "description": "",
5
- "main": "index.js",
3
+ "type": "module",
4
+ "version": "0.0.4",
5
+ "description": "c2j job system",
6
6
  "scripts": {
7
- "test": "echo \"Error: no test specified\" && exit 1"
7
+ "postinstall": "node install.js",
8
+ "run": "node run-c2j.js"
8
9
  },
9
- "keywords": [],
10
- "author": "",
11
- "license": "AGPL-3.0-only",
12
- "type": "commonjs"
13
- }
10
+ "repository": {
11
+ "type": "git",
12
+ "url": "git+https://github.com/colony-2/c2j.git"
13
+ },
14
+ "author": {
15
+ "email": "noreply@colony2.com",
16
+ "name": "Colony 2"
17
+ },
18
+ "license": "APGL",
19
+ "bugs": {
20
+ "url": "https://github.com/colony-2/c2j/issues"
21
+ },
22
+ "homepage": "https://github.com/colony-2/c2j",
23
+ "bin": {
24
+ "c2j": "run-c2j.js"
25
+ },
26
+ "dependencies": {
27
+ "jszip": "3.10.1",
28
+ "proxy-agent": "8.0.1",
29
+ "tar": "7.5.13"
30
+ },
31
+ "archives": {
32
+ "darwin-arm64": {
33
+ "name": "c2j_0.0.4_Darwin_arm64.tar.gz",
34
+ "url": "https://github.com/colony-2/c2j-release/releases/download/v0.0.4/c2j_0.0.4_Darwin_arm64.tar.gz",
35
+ "bins": [
36
+ "c2j"
37
+ ],
38
+ "format": "tar.gz",
39
+ "checksum": {
40
+ "algorithm": "sha256",
41
+ "digest": "eeeb6d6e75f86e9b87f94749bf2dbfe30fed768f91f534177961281c9d64c346"
42
+ }
43
+ },
44
+ "darwin-x64": {
45
+ "name": "c2j_0.0.4_Darwin_x86_64.tar.gz",
46
+ "url": "https://github.com/colony-2/c2j-release/releases/download/v0.0.4/c2j_0.0.4_Darwin_x86_64.tar.gz",
47
+ "bins": [
48
+ "c2j"
49
+ ],
50
+ "format": "tar.gz",
51
+ "checksum": {
52
+ "algorithm": "sha256",
53
+ "digest": "16d07d433ed48cae419ae70a8855a093fc839f9b6a1abe39efa8cd7f77f10525"
54
+ }
55
+ },
56
+ "linux-arm64": {
57
+ "name": "c2j_0.0.4_Linux_arm64.tar.gz",
58
+ "url": "https://github.com/colony-2/c2j-release/releases/download/v0.0.4/c2j_0.0.4_Linux_arm64.tar.gz",
59
+ "bins": [
60
+ "c2j"
61
+ ],
62
+ "format": "tar.gz",
63
+ "checksum": {
64
+ "algorithm": "sha256",
65
+ "digest": "7e6f77f8fd22c892ea88445a20d46bbc6943e47583e3059ee0b0d82d34ead090"
66
+ }
67
+ },
68
+ "linux-x64": {
69
+ "name": "c2j_0.0.4_Linux_x86_64.tar.gz",
70
+ "url": "https://github.com/colony-2/c2j-release/releases/download/v0.0.4/c2j_0.0.4_Linux_x86_64.tar.gz",
71
+ "bins": [
72
+ "c2j"
73
+ ],
74
+ "format": "tar.gz",
75
+ "checksum": {
76
+ "algorithm": "sha256",
77
+ "digest": "5fba61cb4b7d081537c007008452955c6de3b74a69e87eed0cbadf1c01dd8c99"
78
+ }
79
+ }
80
+ },
81
+ "keywords": [
82
+ "sandbox",
83
+ "docker",
84
+ "ai",
85
+ "agent",
86
+ "cli",
87
+ "security"
88
+ ],
89
+ "engines": {
90
+ "node": "\u003e=14.0.0"
91
+ }
92
+ }
package/run-c2j.js ADDED
@@ -0,0 +1,6 @@
1
+ #!/usr/bin/env node
2
+
3
+ // This file was generated by GoReleaser. DO NOT EDIT.
4
+
5
+ import { run } from "./lib.js";
6
+ run("c2j").then((code) => process.exit(code));
package/index.js DELETED
File without changes