cozeni 0.0.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 (3) hide show
  1. package/README.md +6 -0
  2. package/bin/cozeni.js +10 -0
  3. package/package.json +10 -0
package/README.md ADDED
@@ -0,0 +1,6 @@
1
+ # cozeni
2
+
3
+ This package name is reserved by Nulogic, the publisher of Cozeni.
4
+ It contains no CLI. Use the official SDK: [`@nulogic/cozeni-sdk`](https://www.npmjs.com/package/@nulogic/cozeni-sdk).
5
+
6
+ このパッケージ名は Cozeni の公開元 Nulogic が保持しています。CLI は含みません。公式 SDK `@nulogic/cozeni-sdk` を使ってください。
package/bin/cozeni.js ADDED
@@ -0,0 +1,10 @@
1
+ #!/usr/bin/env node
2
+ // 名前の乗っ取りを防ぐための予約パッケージ。CLI の処理は中継しない(SDK をプロジェクトに入れて使う前提)。
3
+ console.error(
4
+ [
5
+ 'Cozeni の SDK がこのプロジェクトに入っていません。',
6
+ '導入は `npx @nulogic/cozeni-sdk init --creator <cre_…> --json` から始めてください。',
7
+ 'The Cozeni SDK is not installed in this project. Start with `npx @nulogic/cozeni-sdk init`.',
8
+ ].join('\n'),
9
+ );
10
+ process.exit(1);
package/package.json ADDED
@@ -0,0 +1,10 @@
1
+ {
2
+ "name": "cozeni",
3
+ "version": "0.0.1",
4
+ "description": "Placeholder for Cozeni by Nulogic. Use @nulogic/cozeni-sdk.",
5
+ "license": "MIT",
6
+ "author": "Nulogic",
7
+ "repository": { "type": "git", "url": "git+https://github.com/nulogic-jp/cozeni-sdk.git" },
8
+ "bin": { "cozeni": "bin/cozeni.js" },
9
+ "files": ["bin", "README.md"]
10
+ }