@x-all-in-one/coding-helper 0.1.0 → 0.1.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.
@@ -38,7 +38,7 @@ export class OhMyOpenCodePlugin {
38
38
  }
39
39
  const isWindows = process.platform === 'win32';
40
40
  const command = isWindows ? 'bunx.cmd' : 'bunx';
41
- const args = ['oh-my-opencode', 'install'];
41
+ const args = ['oh-my-opencode', 'install', '--no-tui', '--claude=no', '--chatgpt=no', '--gemini=no'];
42
42
  return new Promise((resolve, reject) => {
43
43
  const child = spawn(command, args, {
44
44
  stdio: 'inherit',
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@x-all-in-one/coding-helper",
3
3
  "type": "module",
4
- "version": "0.1.0",
4
+ "version": "0.1.1",
5
5
  "description": "X All In One Coding Helper",
6
6
  "author": "X.AIO",
7
7
  "homepage": "https://docs.x-aio.com/zh/docs",
@@ -42,6 +42,8 @@
42
42
  "devDependencies": {
43
43
  "@antfu/eslint-config": "^6.2.0",
44
44
  "@changesets/cli": "^2.29.8",
45
+ "@commitlint/cli": "^20.3.1",
46
+ "@commitlint/config-conventional": "^20.3.1",
45
47
  "@eslint/js": "^9.39.1",
46
48
  "@types/inquirer": "^9.0.7",
47
49
  "@types/js-yaml": "^4.0.9",
@@ -49,7 +51,9 @@
49
51
  "eslint": "^9.39.1",
50
52
  "eslint-plugin-format": "^1.2.0",
51
53
  "globals": "^16.5.0",
54
+ "husky": "^9.1.7",
52
55
  "javascript-obfuscator": "^4.1.0",
56
+ "lint-staged": "^16.2.7",
53
57
  "nodemon": "^3.1.11",
54
58
  "tsx": "^4.20.6",
55
59
  "typescript": "^5.9.3",
@@ -62,6 +66,7 @@
62
66
  "start": "node dist/cli.js",
63
67
  "lint": "eslint .",
64
68
  "lint:fix": "eslint . --fix",
69
+ "type-check": "tsc --noEmit",
65
70
  "changeset": "changeset",
66
71
  "version": "changeset version",
67
72
  "release": "pnpm run build && changeset publish"