@tillstack/cli 0.2.3 → 0.3.1

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,12 +1,12 @@
1
1
  {
2
2
  "name": "@tillstack/cli",
3
- "version": "0.2.3",
3
+ "version": "0.3.1",
4
4
  "description": "TillDev command-line interface — manage TillPulse observability, TillShield edge WAF, TillGate and TillAuth from your terminal (source-map uploads, rules-as-code, and more).",
5
5
  "license": "Apache-2.0",
6
6
  "type": "module",
7
7
  "bin": {
8
- "tilldev": "./dist/index.js",
9
- "tillpulse": "./dist/index.js"
8
+ "tilldev": "dist/index.js",
9
+ "tillpulse": "dist/index.js"
10
10
  },
11
11
  "files": [
12
12
  "dist"
@@ -14,6 +14,13 @@
14
14
  "engines": {
15
15
  "node": ">=20"
16
16
  },
17
+ "scripts": {
18
+ "build": "tsc",
19
+ "dev": "tsx src/index.ts",
20
+ "typecheck": "tsc --noEmit",
21
+ "prepack": "tsc",
22
+ "clean": "rm -rf dist"
23
+ },
17
24
  "devDependencies": {
18
25
  "@types/node": "^22.0.0",
19
26
  "tsx": "^4.19.2",
@@ -21,12 +28,12 @@
21
28
  },
22
29
  "repository": {
23
30
  "type": "git",
24
- "url": "git+https://github.com/tillafrica/tilldev.git",
31
+ "url": "git+https://git.tilldev.dev/tillafrica/tilldev.git",
25
32
  "directory": "apps/cli"
26
33
  },
27
34
  "homepage": "https://tilldev.dev/docs/tilldev/cli",
28
35
  "bugs": {
29
- "url": "https://github.com/tillafrica/tilldev/issues"
36
+ "url": "https://tilldev.dev/docs/tilldev/cli"
30
37
  },
31
38
  "keywords": [
32
39
  "tilldev",
@@ -39,11 +46,5 @@
39
46
  ],
40
47
  "publishConfig": {
41
48
  "access": "public"
42
- },
43
- "scripts": {
44
- "build": "tsc",
45
- "dev": "tsx src/index.ts",
46
- "typecheck": "tsc --noEmit",
47
- "clean": "rm -rf dist"
48
49
  }
49
- }
50
+ }