storeconfig 0.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 ADDED
@@ -0,0 +1,66 @@
1
+ {
2
+ "name": "storeconfig",
3
+ "version": "0.0.1",
4
+ "description": "CLI tool for App Store Connect synchronization",
5
+ "main": "dist/cli.js",
6
+ "bin": {
7
+ "storeconfig": "dist/cli.js"
8
+ },
9
+ "scripts": {
10
+ "prebuild": "npm run update-readme",
11
+ "predev": "npm run update-readme",
12
+ "build": "node esbuild.config.js",
13
+ "build:watch": "node esbuild.config.js --watch",
14
+ "dev": "node -r ts-node/register -r tsconfig-paths/register src/cli.ts",
15
+ "clean": "rm -rf dist",
16
+ "nuke": "rm -rf node_modules dist tsconfig.tsbuildinfo",
17
+ "start": "node dist/cli.js",
18
+ "test": "jest --config jest.unit.config.js",
19
+ "test:unit": "jest --config jest.unit.config.js",
20
+ "test:coverage": "jest --config jest.unit.config.js --coverage",
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",
30
+ "update-readme": "node scripts/generate-readme-example.js"
31
+ },
32
+ "keywords": [
33
+ "cli",
34
+ "app-store",
35
+ "ios",
36
+ "synchronization"
37
+ ],
38
+ "author": "Semih Cihan",
39
+ "license": "UNLICENSED",
40
+ "files": [
41
+ "dist/",
42
+ "README.md"
43
+ ],
44
+ "dependencies": {
45
+ "axios": "^1.10.0",
46
+ "dotenv": "^16.6.1",
47
+ "inquirer": "^12.9.6",
48
+ "ora": "^9.0.0",
49
+ "yargs": "^17.7.2",
50
+ "zod": "4.1.9",
51
+ "winston": "^3.17.0",
52
+ "zod-validation-error": "^4.0.2"
53
+ },
54
+ "devDependencies": {
55
+ "@types/inquirer": "^9.0.9",
56
+ "@types/jest": "^30.0.0",
57
+ "@types/node": "^24.0.10",
58
+ "@types/yargs": "^17.0.33",
59
+ "esbuild": "^0.25.11",
60
+ "jest": "^30.0.4",
61
+ "ts-jest": "^29.4.0",
62
+ "ts-node": "^10.9.2",
63
+ "tsconfig-paths": "^4.2.0",
64
+ "typescript": "^5.8.3"
65
+ }
66
+ }