@bazilio-san/glm-cc 1.0.5 → 1.0.7

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/bin/glm.js +5 -7
  2. package/package.json +2 -2
package/bin/glm.js CHANGED
@@ -1,12 +1,10 @@
1
1
  #!/usr/bin/env node
2
2
 
3
- 'use strict';
4
-
5
- const path = require('path');
6
- const os = require('os');
7
- const fs = require('fs');
8
- const readline = require('readline');
9
- const { spawn } = require('child_process');
3
+ import path from 'node:path';
4
+ import os from 'node:os';
5
+ import fs from 'node:fs';
6
+ import readline from 'node:readline';
7
+ import { spawn } from 'node:child_process';
10
8
 
11
9
  const CONFIG_FILE = path.join(os.homedir(), '.glm-claude-code.json');
12
10
 
package/package.json CHANGED
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "name": "@bazilio-san/glm-cc",
3
- "version": "1.0.5",
3
+ "version": "1.0.7",
4
4
  "description": "CLI tool for running claude with custom GLM configuration",
5
5
  "main": "bin/glm.js",
6
6
  "bin": {
7
- "glm": "./bin/glm.js"
7
+ "glm": "bin/glm.js"
8
8
  },
9
9
  "type": "module",
10
10
  "scripts": {