@ciderjs/gasnuki 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.
package/README.ja.md CHANGED
@@ -10,13 +10,13 @@ Apps Scriptとフロントエンド間の型安全な通信をサポートしま
10
10
  ## インストール
11
11
 
12
12
  ```bash
13
- npm install gasnuki
13
+ npm install @ciderjs/gasnuki
14
14
  ```
15
15
 
16
16
  または
17
17
 
18
18
  ```bash
19
- yarn add gasnuki
19
+ pnpm add @ciderjs/gasnuki
20
20
  ```
21
21
 
22
22
  ## 使い方
@@ -24,7 +24,7 @@ yarn add gasnuki
24
24
  1. 型定義ファイルを生成します:
25
25
 
26
26
  ```bash
27
- npx gasnuki
27
+ npx @ciderjs/gasnuki
28
28
  ```
29
29
 
30
30
  デフォルトでは `types` ディレクトリに型定義ファイルが生成されます。
package/README.md CHANGED
@@ -9,13 +9,13 @@ Type definitions and utilities for Google Apps Script client-side API
9
9
  ## Installation
10
10
 
11
11
  ```bash
12
- npm install gasnuki
12
+ npm install @ciderjs/gasnuki
13
13
  ```
14
14
 
15
15
  or
16
16
 
17
17
  ```bash
18
- yarn add gasnuki
18
+ pnpm add @ciderjs/gasnuki
19
19
  ```
20
20
 
21
21
  ## Usage
@@ -23,7 +23,7 @@ yarn add gasnuki
23
23
  1. Generate type definitions by running:
24
24
 
25
25
  ```bash
26
- npx gasnuki
26
+ npx @ciderjs/gasnuki
27
27
  ```
28
28
 
29
29
  This will generate type definition files in the `types` directory by default.
package/dist/cli.cjs CHANGED
@@ -9,7 +9,7 @@ require('consola');
9
9
  require('node:fs');
10
10
  require('ts-morph');
11
11
 
12
- const version = "0.1.0";
12
+ const version = "0.1.1";
13
13
 
14
14
  const parseArgs = async (command) => {
15
15
  const { project, srcDir, outDir, outputFile, watch } = command.opts();
package/dist/cli.mjs CHANGED
@@ -7,7 +7,7 @@ import 'consola';
7
7
  import 'node:fs';
8
8
  import 'ts-morph';
9
9
 
10
- const version = "0.1.0";
10
+ const version = "0.1.1";
11
11
 
12
12
  const parseArgs = async (command) => {
13
13
  const { project, srcDir, outDir, outputFile, watch } = command.opts();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ciderjs/gasnuki",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "",
5
5
  "main": "dist/index.mjs",
6
6
  "types": "dist/index.d.ts",