lxns-rhythm-api 0.1.4 → 0.1.8
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/LICENSE +21 -0
- package/README.md +85 -53
- package/dist/index.d.ts +430 -89
- package/dist/index.js +451 -132
- package/package.json +18 -9
package/package.json
CHANGED
|
@@ -1,8 +1,19 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "lxns-rhythm-api",
|
|
3
3
|
"description": "A simple SDK for lxns api.",
|
|
4
|
+
"keywords": [
|
|
5
|
+
"lxns",
|
|
6
|
+
"lxns-api",
|
|
7
|
+
"maimai",
|
|
8
|
+
"maimai-dx",
|
|
9
|
+
"chunithm",
|
|
10
|
+
"sdk",
|
|
11
|
+
"typescript",
|
|
12
|
+
"api-client"
|
|
13
|
+
],
|
|
4
14
|
"author": "amatsuka <amatsukamao@qq.com>",
|
|
5
|
-
"version": "0.1.
|
|
15
|
+
"version": "0.1.8",
|
|
16
|
+
"license": "MIT",
|
|
6
17
|
"repository": {
|
|
7
18
|
"type": "git",
|
|
8
19
|
"url": "https://github.com/wsyzxjn/lxns-rhythm-api.git"
|
|
@@ -25,21 +36,19 @@
|
|
|
25
36
|
"module": "./dist/index.js",
|
|
26
37
|
"types": "./dist/index.d.ts",
|
|
27
38
|
"scripts": {
|
|
28
|
-
"
|
|
29
|
-
"
|
|
39
|
+
"check": "biome check",
|
|
40
|
+
"fix": "biome check --write",
|
|
41
|
+
"typecheck": "tsc --noEmit",
|
|
30
42
|
"test": "tsx tests/index.ts",
|
|
43
|
+
"test:beta": "tsx tests/beta.ts",
|
|
31
44
|
"build": "tsup",
|
|
32
45
|
"build:production": "cross-env NODE_ENV=production tsup",
|
|
33
|
-
"prepublishOnly": "pnpm run
|
|
46
|
+
"prepublishOnly": "pnpm run fix && pnpm run typecheck && pnpm run build:production"
|
|
34
47
|
},
|
|
35
48
|
"devDependencies": {
|
|
49
|
+
"@biomejs/biome": "2.3.11",
|
|
36
50
|
"@types/node": "^24.5.1",
|
|
37
|
-
"@typescript-eslint/eslint-plugin": "^8.44.0",
|
|
38
|
-
"@typescript-eslint/parser": "^8.44.0",
|
|
39
51
|
"cross-env": "^10.0.0",
|
|
40
|
-
"eslint": "^9.35.0",
|
|
41
|
-
"eslint-config-prettier": "^10.1.8",
|
|
42
|
-
"prettier": "^3.6.2",
|
|
43
52
|
"tsup": "^8.5.0",
|
|
44
53
|
"tsx": "^4.20.5",
|
|
45
54
|
"typescript": "^5.9.2"
|