mixi2-js 0.1.0 → 0.1.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.
- package/README.md +6 -4
- package/package.json +8 -5
package/README.md
CHANGED
|
@@ -6,12 +6,10 @@
|
|
|
6
6
|
|
|
7
7
|
</div>
|
|
8
8
|
|
|
9
|
-
---
|
|
10
|
-
|
|
11
9
|
[](https://www.npmjs.com/package/mixi2-js)
|
|
12
10
|
[](https://www.npmjs.com/package/mixi2-js)
|
|
13
|
-
[](https://jsr.io/@otoneko1102/mixi2-js)
|
|
12
|
+
[](https://jsr.io/@otoneko1102/mixi2-js)
|
|
15
13
|
[](LICENSE)
|
|
16
14
|
[](package.json)
|
|
17
15
|
[](https://www.typescriptlang.org/)
|
|
@@ -60,6 +58,10 @@ mixi2 の [Application API](https://developer.mixi.social/docs) を利用する
|
|
|
60
58
|
|
|
61
59
|
```bash
|
|
62
60
|
npm install mixi2-js
|
|
61
|
+
|
|
62
|
+
# or
|
|
63
|
+
|
|
64
|
+
npx jsr add @otoneko1102/mixi2-js
|
|
63
65
|
```
|
|
64
66
|
|
|
65
67
|
ESM・CommonJS の両方に対応しています。TypeScript の型定義 (`.d.ts`) も同梱されています。
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mixi2-js",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"description": "TypeScript/JavaScript SDK for mixi2 Application API",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.cjs",
|
|
@@ -26,6 +26,8 @@
|
|
|
26
26
|
"setup": "npm install && node scripts/setup.js",
|
|
27
27
|
"test": "jest",
|
|
28
28
|
"check": "tsc --noEmit",
|
|
29
|
+
"checkversion": "ncu",
|
|
30
|
+
"up": "ncu -u && npm install",
|
|
29
31
|
"lint": "eslint ./src/",
|
|
30
32
|
"lint:fix": "eslint ./src/ --fix",
|
|
31
33
|
"build": "tsup",
|
|
@@ -59,15 +61,16 @@
|
|
|
59
61
|
"devDependencies": {
|
|
60
62
|
"@eslint/js": "^10.0.1",
|
|
61
63
|
"@types/jest": "^30.0.0",
|
|
62
|
-
"@types/node": "^25.
|
|
63
|
-
"eslint": "^10.0.
|
|
64
|
+
"@types/node": "^25.4.0",
|
|
65
|
+
"eslint": "^10.0.3",
|
|
64
66
|
"eslint-config-prettier": "^10.1.8",
|
|
65
|
-
"jest": "^30.
|
|
67
|
+
"jest": "^30.3.0",
|
|
68
|
+
"npm-check-updates": "^19.6.3",
|
|
66
69
|
"prettier": "^3.8.1",
|
|
67
70
|
"ts-jest": "^29.4.6",
|
|
68
71
|
"tsup": "^8.5.1",
|
|
69
72
|
"typescript": "^5.9.3",
|
|
70
|
-
"typescript-eslint": "^8.
|
|
73
|
+
"typescript-eslint": "^8.57.0"
|
|
71
74
|
},
|
|
72
75
|
"engines": {
|
|
73
76
|
"node": ">=18.0.0"
|