@dimension-studios/ttk-proxy 1.170.3 → 1.171.4

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 +4 -4
  2. package/package.json +12 -12
package/README.md CHANGED
@@ -173,16 +173,16 @@ Set a configuration value.
173
173
 
174
174
  ```bash
175
175
  # Install dependencies
176
- npm install
176
+ pnpm install
177
177
 
178
178
  # Build the package
179
- npm run build
179
+ pnpm run build
180
180
 
181
181
  # Run type checking
182
- npm run type-check
182
+ pnpm run type-check
183
183
 
184
184
  # Development mode (watch)
185
- npm run dev
185
+ pnpm run dev
186
186
  ```
187
187
 
188
188
  ### Testing Locally
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dimension-studios/ttk-proxy",
3
- "version": "1.170.3",
3
+ "version": "1.171.4",
4
4
  "description": "CLI tool for TikTok proxy API",
5
5
  "keywords": [
6
6
  "tiktok",
@@ -12,7 +12,7 @@
12
12
  "license": "ISC",
13
13
  "repository": {
14
14
  "type": "git",
15
- "url": "git+https://github.com/dimension-studios/dimension.git",
15
+ "url": "git+https://github.com/dimension-studios-inc/dimension.git",
16
16
  "directory": "packages/ttk-proxy-cli"
17
17
  },
18
18
  "publishConfig": {
@@ -36,22 +36,22 @@
36
36
  "build": "tsdown && chmod +x bin/cli.js",
37
37
  "clean": "rm -rf dist",
38
38
  "dev": "tsdown --watch",
39
- "type-check": "tsgo --noEmit",
39
+ "type-check": "tsc --noEmit",
40
40
  "debug": "dotenv -- tsx debug/index.ts",
41
- "prepublishOnly": "npm run build"
41
+ "prepublishOnly": "pnpm run build"
42
42
  },
43
43
  "dependencies": {
44
- "@rharkor/logger": "1.3.3",
44
+ "@rharkor/logger": "catalog:",
45
45
  "commander": "15.0.0",
46
46
  "conf": "15.1.0",
47
- "dotenv": "17.4.2",
48
- "tsdown": "0.22.12",
49
- "undici": "8.7.0"
47
+ "dotenv": "catalog:",
48
+ "undici": "8.9.0"
50
49
  },
51
50
  "devDependencies": {
52
- "@types/node": "24.13.3",
53
- "dotenv-cli": "11.0.0",
54
- "tsx": "4.23.1",
55
- "@typescript/native-preview": "7.0.0-dev.20260707.2"
51
+ "@types/node": "catalog:",
52
+ "dotenv-cli": "catalog:",
53
+ "tsx": "catalog:",
54
+ "typescript": "catalog:",
55
+ "tsdown": "catalog:"
56
56
  }
57
57
  }