@zaks-io/agent-paste 0.0.0 → 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 +201 -0
  2. package/README.md +216 -0
  3. package/dist/index.js +22123 -0
  4. package/package.json +38 -13
package/package.json CHANGED
@@ -1,21 +1,46 @@
1
1
  {
2
2
  "name": "@zaks-io/agent-paste",
3
- "version": "0.0.0",
4
- "description": "Reserved package name for Agent Paste.",
5
- "main": "index.js",
6
- "scripts": {
7
- "test": "echo \"Error: no test specified\" && exit 1"
8
- },
9
- "keywords": [],
10
- "author": "",
11
- "license": "UNLICENSED",
3
+ "license": "Apache-2.0",
4
+ "version": "0.1.0",
12
5
  "type": "module",
13
- "repository": {
14
- "type": "git",
15
- "url": "git+ssh://git@github.com/zaks-io/agent-paste.git"
16
- },
6
+ "description": "Command-line interface for publishing shareable Artifacts to Agent Paste.",
17
7
  "homepage": "https://agent-paste.sh",
18
8
  "bugs": {
19
9
  "url": "https://github.com/zaks-io/agent-paste/issues"
10
+ },
11
+ "author": "Zaks.io, LLC",
12
+ "repository": {
13
+ "type": "git",
14
+ "url": "git+https://github.com/zaks-io/agent-paste.git",
15
+ "directory": "apps/cli"
16
+ },
17
+ "bin": {
18
+ "agent-paste": "dist/index.js"
19
+ },
20
+ "files": [
21
+ "LICENSE",
22
+ "README.md",
23
+ "dist"
24
+ ],
25
+ "publishConfig": {
26
+ "access": "public"
27
+ },
28
+ "scripts": {
29
+ "build": "node build.mjs",
30
+ "check": "pnpm typecheck",
31
+ "dev": "pnpm build && node dist/index.js",
32
+ "lint": "biome lint .",
33
+ "prepublishOnly": "node scripts/prepublish-guard.mjs",
34
+ "test": "vitest run",
35
+ "test:coverage": "vitest run --coverage --config ../../vitest.coverage.node.config.ts",
36
+ "typecheck": "tsc --project tsconfig.json --noEmit"
37
+ },
38
+ "devDependencies": {
39
+ "@agent-paste/api-client": "workspace:*",
40
+ "@agent-paste/contracts": "workspace:*",
41
+ "@agent-paste/storage": "workspace:*",
42
+ "esbuild": "^0.28.0",
43
+ "typescript": "catalog:",
44
+ "vitest": "catalog:"
20
45
  }
21
46
  }