mixi2-js 0.0.1 → 0.0.2

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/README.md +1 -0
  2. package/package.json +4 -1
package/README.md CHANGED
@@ -68,6 +68,7 @@ ESM・CommonJS の両方に対応しています。TypeScript の型定義 (`.d.
68
68
 
69
69
  ### 前提条件
70
70
 
71
+ - **Node.js 18 以上**
71
72
  - [mixi2 Developer Platform](https://developer.mixi.social) で開発者登録が完了していること
72
73
  - アプリケーションを作成し、認証情報(Client ID / Client Secret / Token URL 等)を取得済みであること
73
74
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mixi2-js",
3
- "version": "0.0.1",
3
+ "version": "0.0.2",
4
4
  "description": "TypeScript/JavaScript SDK for mixi2 Application API",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",
@@ -61,5 +61,8 @@
61
61
  "dependencies": {
62
62
  "@grpc/grpc-js": "^1.14.3",
63
63
  "@grpc/proto-loader": "^0.8.0"
64
+ },
65
+ "engines": {
66
+ "node": ">=18.0.0"
64
67
  }
65
68
  }