intlayer-cli 8.2.4 → 8.3.0-canary.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 (1) hide show
  1. package/package.json +14 -14
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "intlayer-cli",
3
- "version": "8.2.4",
3
+ "version": "8.3.0-canary.1",
4
4
  "private": false,
5
5
  "description": "Lightweight CLI tool for Intlayer, enabling content audits, dictionary management, and CMS sync. Ideal for JavaScript developers using React or Express.",
6
6
  "keywords": [
@@ -59,35 +59,35 @@
59
59
  "./package.json"
60
60
  ],
61
61
  "scripts": {
62
- "build": "tsdown --config tsdown.config.ts",
63
- "build:ci": "tsdown --config tsdown.config.ts",
64
- "clean": "rimraf ./dist .turbo",
65
- "dev": "tsdown --config tsdown.config.ts --watch",
66
- "format": "biome format . --check",
67
- "format:fix": "biome format --write .",
68
- "lint": "biome lint .",
69
- "lint:fix": "biome lint --write .",
62
+ "build": "bun --bun tsdown --config tsdown.config.ts",
63
+ "build:ci": "bun --bun tsdown --config tsdown.config.ts",
64
+ "clean": "bun --bun rimraf ./dist .turbo",
65
+ "dev": "bun --bun tsdown --config tsdown.config.ts --watch",
66
+ "format": "bun --bun biome format . --check",
67
+ "format:fix": "bun --bun biome format --write .",
68
+ "lint": "bun --bun biome lint .",
69
+ "lint:fix": "bun --bun biome lint --write .",
70
70
  "prepublish": "cp -f ../../README.md ./README.md",
71
71
  "publish": "bun publish || true",
72
72
  "publish:canary": "bun publish --access public --tag canary || true",
73
73
  "publish:latest": "bun publish --access public --tag latest || true",
74
74
  "serve": "webpack serve --config ./webpack.config.ts",
75
- "test": "vitest run",
76
- "test:watch": "vitest",
75
+ "test": "bun --bun vitest run",
76
+ "test:watch": "bun --bun vitest",
77
77
  "transpile": "webpack --config ./webpack.config.ts",
78
78
  "typecheck": "tsc --noEmit --project tsconfig.types.json",
79
79
  "watch": "webpack --config ./webpack.config.ts --watch"
80
80
  },
81
81
  "dependencies": {
82
- "@intlayer/cli": "8.2.3"
82
+ "@intlayer/cli": "8.3.0-canary.1"
83
83
  },
84
84
  "devDependencies": {
85
- "@types/node": "25.3.5",
85
+ "@types/node": "25.4.0",
86
86
  "@utils/ts-config": "1.0.4",
87
87
  "@utils/ts-config-types": "1.0.4",
88
88
  "@utils/tsdown-config": "1.0.4",
89
89
  "rimraf": "6.1.3",
90
- "tsdown": "0.21.0",
90
+ "tsdown": "0.21.2",
91
91
  "typescript": "5.9.3",
92
92
  "vitest": "4.0.18"
93
93
  },