storeconfig 0.0.25 → 1.0.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,6 +1,6 @@
1
1
  {
2
2
  "name": "storeconfig",
3
- "version": "0.0.25",
3
+ "version": "1.0.1",
4
4
  "description": "CLI tool for App Store Connect synchronization",
5
5
  "main": "dist/cli.js",
6
6
  "bin": {
@@ -19,24 +19,22 @@
19
19
  "start": "node dist/cli.js",
20
20
  "test": "jest --config jest.unit.config.js",
21
21
  "test:unit": "jest --config jest.unit.config.js",
22
- "test:e2e:dev": "E2E_ENV_FILE=.env.e2e.dev ENV_FILE=.env AWS_PROFILE=store-config jest --config jest.e2e.config.js",
23
- "test:e2e:test": "E2E_ENV_FILE=.env.e2e.test ENV_FILE=.env.test AWS_PROFILE=store-config jest --config jest.e2e.config.js",
22
+ "test:e2e:dev": "E2E_ENV_FILE=.env.e2e.dev jest --config jest.e2e.config.js",
23
+ "test:e2e:test": "E2E_ENV_FILE=.env.e2e.test jest --config jest.e2e.config.js",
24
24
  "test:coverage": "jest --config jest.unit.config.js --coverage",
25
25
  "prepublishOnly": "npm run build",
26
26
  "fetch": "node dist/cli.js fetch",
27
27
  "fetch:all": "node dist/cli.js fetch",
28
28
  "apply": "node dist/cli.js apply",
29
- "plan": "node dist/cli.js plan",
30
29
  "apple": "node dist/cli.js apple",
31
30
  "validate": "node dist/cli.js validate",
32
31
  "set-price": "node dist/cli.js set-price",
33
32
  "compare-price": "node dist/cli.js compare-price",
34
33
  "example": "node dist/cli.js example",
35
- "user": "node dist/cli.js user",
36
34
  "mcp": "node dist/mcp.js",
37
35
  "mcp:test": "npx @modelcontextprotocol/inspector node dist/mcp.js",
38
36
  "update-readme": "node scripts/generate-readme-example.js",
39
- "upload-sourcemap": "npx bugsnag-source-maps upload-node --api-key 9214ba2acdaeee4012c236461232c4f3 --overwrite --detect-app-version --bundle dist/cli.js --source-map dist/cli.js.map"
37
+ "upload-sourcemap": "node scripts/upload-sourcemap.js"
40
38
  },
41
39
  "keywords": [
42
40
  "cli",
@@ -75,8 +73,8 @@
75
73
  "dependencies": {
76
74
  "@bugsnag/js": "^8.6.0",
77
75
  "@modelcontextprotocol/sdk": "^1.0.0",
76
+ "@semihcihan/developer-tool": "file:../api",
78
77
  "axios": "^1.10.0",
79
- "axios-retry": "^4.5.0",
80
78
  "dotenv": "^16.6.1",
81
79
  "inquirer": "^8.2.5",
82
80
  "ora": "^8.2.0",
@@ -92,13 +90,11 @@
92
90
  "@types/jest": "^30.0.0",
93
91
  "@types/node": "^24.0.10",
94
92
  "@types/yargs": "^17.0.33",
95
- "axios-mock-adapter": "^2.1.0",
96
93
  "esbuild": "^0.25.11",
97
94
  "jest": "^30.0.4",
98
95
  "ts-jest": "^29.4.0",
99
96
  "ts-node": "^10.9.2",
100
97
  "tsconfig-paths": "^4.2.0",
101
- "typescript": "^5.8.3",
102
- "yaml": "^2.8.2"
98
+ "typescript": "^5.8.3"
103
99
  }
104
100
  }