@next-sekai/sonolus-next-sekai-engine 2.9.0 → 2.9.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.md CHANGED
@@ -14,6 +14,14 @@ npm install @next-sekai/sonolus-next-sekai-engine
14
14
 
15
15
  Package version.
16
16
 
17
+ ### `engineFullName`
18
+
19
+ Engine full name.
20
+
21
+ ### `engineShortName`
22
+
23
+ Engine short name.
24
+
17
25
  ### `databaseEngineItem`
18
26
 
19
27
  Partial database engine item compatible with [sonolus-express](https://github.com/Sonolus/sonolus-express).
Binary file
Binary file
package/dist/EngineRom CHANGED
Binary file
Binary file
Binary file
package/dist/index.d.ts CHANGED
@@ -1,18 +1,24 @@
1
1
  export { susToUSC } from './sus/convert.js';
2
2
  export { uscToLevelData } from './usc/convert.js';
3
3
  export * from './usc/index.js';
4
- export declare const version = "2.9.0";
4
+ export declare const version = "2.9.1";
5
+ export declare const engineFullName: {
6
+ readonly en: 'Next SEKAI';
7
+ };
8
+ export declare const engineShortName: {
9
+ readonly en: 'Next SEKAI';
10
+ };
5
11
  export declare const databaseEngineItem: {
6
- readonly name: "next-sekai";
12
+ readonly name: 'next-sekai';
7
13
  readonly version: 13;
8
14
  readonly title: {
9
- readonly en: "Next SEKAI";
15
+ readonly en: `##LOCALIZE:${string}`;
10
16
  };
11
17
  readonly subtitle: {
12
- readonly en: "Next SEKAI";
18
+ readonly en: `##LOCALIZE:${string}`;
13
19
  };
14
20
  readonly author: {
15
- readonly en: "qwewqa#590353";
21
+ readonly en: 'qwewqa#590353';
16
22
  };
17
23
  readonly description: {
18
24
  readonly en: string;
package/dist/index.js CHANGED
@@ -1,16 +1,19 @@
1
+ import { TextFunction } from '@sonolus/core';
1
2
  export { susToUSC } from './sus/convert.js';
2
3
  export { uscToLevelData } from './usc/convert.js';
3
4
  export * from './usc/index.js';
4
- export const version = '2.9.0';
5
+ export const version = '2.9.1';
6
+ export const engineFullName = {
7
+ en: 'Next SEKAI',
8
+ };
9
+ export const engineShortName = {
10
+ en: 'Next SEKAI',
11
+ };
5
12
  export const databaseEngineItem = {
6
13
  name: 'next-sekai',
7
14
  version: 13,
8
- title: {
9
- en: 'Next SEKAI',
10
- },
11
- subtitle: {
12
- en: 'Next SEKAI',
13
- },
15
+ title: { en: `${TextFunction.Localize}:${JSON.stringify(engineShortName)}` },
16
+ subtitle: { en: `${TextFunction.Localize}:${JSON.stringify(engineFullName)}` },
14
17
  author: {
15
18
  en: 'qwewqa#590353',
16
19
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@next-sekai/sonolus-next-sekai-engine",
3
- "version": "2.9.0",
3
+ "version": "2.9.1",
4
4
  "description": "A new Project Sekai inspired engine for Sonolus",
5
5
  "author": "qwewqa",
6
6
  "repository": "github:Next-SEKAI/sonolus-next-sekai-engine",
@@ -24,23 +24,19 @@
24
24
  },
25
25
  "scripts": {
26
26
  "check-type": "tsc -p . --noEmit",
27
- "check-lint": "eslint .",
28
- "check-format": "prettier . --check",
27
+ "check-lint": "oxlint",
28
+ "check-format": "oxfmt --check",
29
29
  "version": "node ./version.js",
30
30
  "build": "tsc -p . && node ./build.js"
31
31
  },
32
32
  "dependencies": {
33
- "@sonolus/core": "~7.14.2"
33
+ "@sonolus/core": "~7.15.4"
34
34
  },
35
35
  "devDependencies": {
36
- "@eslint/js": "^9.39.1",
37
- "@sonolus/sonolus.js": "~9.6.0",
38
- "@types/node": "^22.19.1",
39
- "eslint": "^9.39.1",
40
- "eslint-config-prettier": "^10.1.8",
41
- "prettier": "^3.7.4",
42
- "prettier-plugin-organize-imports": "^4.3.0",
43
- "typescript": "~5.9.3",
44
- "typescript-eslint": "^8.48.1"
36
+ "@types/node": "^22.20.1",
37
+ "oxfmt": "^0.66.0",
38
+ "oxlint": "^1.81.0",
39
+ "oxlint-tsgolint": "^7.0.2001",
40
+ "typescript": "~7.0.2"
45
41
  }
46
42
  }