storeconfig 0.0.4 → 0.0.6

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,6 +1,6 @@
1
1
  {
2
2
  "name": "storeconfig",
3
- "version": "0.0.4",
3
+ "version": "0.0.6",
4
4
  "description": "CLI tool for App Store Connect synchronization",
5
5
  "main": "dist/cli.js",
6
6
  "bin": {
@@ -11,7 +11,7 @@
11
11
  "predev": "npm run update-readme",
12
12
  "build": "node esbuild.config.js",
13
13
  "build:watch": "node esbuild.config.js --watch",
14
- "dev": "node -r ts-node/register -r tsconfig-paths/register src/cli.ts",
14
+ "dev": "node dist/cli.js",
15
15
  "clean": "rm -rf dist",
16
16
  "nuke": "rm -rf node_modules dist tsconfig.tsbuildinfo",
17
17
  "start": "node dist/cli.js",
@@ -19,14 +19,14 @@
19
19
  "test:unit": "jest --config jest.unit.config.js",
20
20
  "test:coverage": "jest --config jest.unit.config.js --coverage",
21
21
  "prepublishOnly": "npm run build",
22
- "fetch": "npx ts-node src/cli.ts fetch --id 6503259293",
23
- "fetch:all": "npx ts-node src/cli.ts fetch",
24
- "apply": "npx ts-node src/cli.ts apply",
25
- "plan": "npx ts-node src/cli.ts plan",
26
- "validate": "npx ts-node src/cli.ts validate-format",
27
- "set-price": "npx ts-node src/cli.ts set-price",
28
- "compare-price": "npx ts-node src/cli.ts compare-price",
29
- "example": "npx ts-node src/cli.ts example",
22
+ "fetch": "node dist/cli.js fetch --id 6503259293",
23
+ "fetch:all": "node dist/cli.js fetch",
24
+ "apply": "node dist/cli.js apply",
25
+ "plan": "node dist/cli.js plan",
26
+ "validate": "node dist/cli.js validate-format",
27
+ "set-price": "node dist/cli.js set-price",
28
+ "compare-price": "node dist/cli.js compare-price",
29
+ "example": "node dist/cli.js example",
30
30
  "update-readme": "node scripts/generate-readme-example.js"
31
31
  },
32
32
  "keywords": [
@@ -63,7 +63,7 @@
63
63
  "@bugsnag/js": "^8.6.0",
64
64
  "axios": "^1.10.0",
65
65
  "dotenv": "^16.6.1",
66
- "inquirer": "^12.9.6",
66
+ "inquirer": "^9.2.23",
67
67
  "ora": "^8.2.0",
68
68
  "winston": "^3.17.0",
69
69
  "yargs": "^17.7.2",