avo 3.2.14 → 3.3.0-alpha.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.
Files changed (3) hide show
  1. package/LICENSE +21 -0
  2. package/cli.js +748 -592
  3. package/package.json +13 -6
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "avo",
3
- "version": "3.2.14",
3
+ "version": "3.3.0-alpha.1",
4
4
  "type": "module",
5
5
  "description": "The command-line interface for Avo",
6
6
  "author": "Avo (https://www.avo.app)",
@@ -18,11 +18,12 @@
18
18
  },
19
19
  "scripts": {
20
20
  "postinstall": "node cli.js track-install",
21
- "prepublishOnly": "npm run compile",
21
+ "prepublishOnly": "npm run build",
22
22
  "lint": "eslint cli.ts",
23
23
  "format": "prettier --write cli.ts",
24
24
  "check-format": "prettier --check cli.ts",
25
- "compile": "tsc"
25
+ "build": "tsc",
26
+ "test": "node --experimental-vm-modules node_modules/jest/bin/jest.js"
26
27
  },
27
28
  "files": [
28
29
  "cli.js",
@@ -38,7 +39,7 @@
38
39
  "ignore-walk": "^5.0.1",
39
40
  "inquirer": "^8.0.0",
40
41
  "inquirer-fuzzy-path": "^2.3.0",
41
- "jsonwebtoken": "^9.0.0",
42
+ "jsonwebtoken": "^9.0.3",
42
43
  "load-json-file": "^7.0.1",
43
44
  "log-symbols": "^5.1.0",
44
45
  "minimatch": "^7.0.0",
@@ -56,15 +57,21 @@
56
57
  },
57
58
  "devDependencies": {
58
59
  "@types/ignore-walk": "^4.0.0",
60
+ "@types/jest": "^29.5.14",
59
61
  "@types/minimatch": "^5.1.2",
60
- "@types/node": "^22.10.5",
62
+ "@types/node": "^24.1.0",
61
63
  "@typescript-eslint/eslint-plugin": "^5.30.5",
62
64
  "@typescript-eslint/parser": "^5.30.5",
63
65
  "eslint": "^7.32.0 || ^8.2.0",
64
66
  "eslint-config-airbnb-base": "^15.0.0",
65
67
  "eslint-config-prettier": "^10.0.1",
66
68
  "eslint-plugin-import": "^2.25.2",
67
- "prettier": "3.4.2",
69
+ "jest": "^29.7.0",
70
+ "prettier": "3.6.2",
71
+ "ts-jest": "^29.4.5",
68
72
  "typescript": "^5.0.2"
73
+ },
74
+ "resolutions": {
75
+ "type-fest": "^3.13.1"
69
76
  }
70
77
  }