@profplum700/etsy-cli 2.4.3 → 2.5.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 (2) hide show
  1. package/README.md +3 -1
  2. package/package.json +4 -7
package/README.md CHANGED
@@ -1,6 +1,8 @@
1
1
  # @profplum700/etsy-cli
2
2
 
3
- Command-line tool for the Etsy v3 API. Manage your Etsy shop from the terminal with ease.
3
+ Command-line tool for the Etsy v3 API. Manage your Etsy shop from the terminal with ease.
4
+
5
+ This package is based on the official Etsy OpenAPI specification (`https://www.etsy.com/openapi/generated/oas/3.0.0.json`), as referenced in Etsy's API documentation (`https://developers.etsy.com/documentation/reference`).
4
6
 
5
7
  ## Installation
6
8
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@profplum700/etsy-cli",
3
- "version": "2.4.3",
3
+ "version": "2.5.1",
4
4
  "type": "module",
5
5
  "description": "Command-line tool for Etsy v3 API",
6
6
  "main": "dist/index.cjs",
@@ -16,9 +16,9 @@
16
16
  "scripts": {
17
17
  "build": "rollup -c",
18
18
  "build:watch": "rollup -c --watch",
19
- "test": "pnpm exec jest",
20
- "test:watch": "pnpm exec jest --watch",
21
- "test:coverage": "pnpm exec jest --coverage",
19
+ "test": "vitest run",
20
+ "test:watch": "vitest",
21
+ "test:coverage": "vitest run --coverage",
22
22
  "lint": "eslint --config ../../eslint.config.mjs .",
23
23
  "lint:fix": "eslint --fix --config ../../eslint.config.mjs .",
24
24
  "type-check": "tsc --noEmit"
@@ -63,13 +63,10 @@
63
63
  "@rollup/plugin-node-resolve": "^16.0.1",
64
64
  "@rollup/plugin-typescript": "^12.1.4",
65
65
  "@types/inquirer": "^9.0.7",
66
- "@types/jest": "^30.0.0",
67
66
  "@types/node": "^24.1.0",
68
- "jest": "^30.0.5",
69
67
  "rollup": "^4.45.1",
70
68
  "rollup-plugin-dts": "^6.1.1",
71
69
  "rollup-plugin-preserve-shebang": "^1.0.1",
72
- "ts-jest": "^29.4.0",
73
70
  "typescript": "^5.5.3"
74
71
  },
75
72
  "publishConfig": {