sonolus-bandori-engine 1.5.0 → 1.5.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 +10 -10
- package/dist/EnginePlayData +0 -0
- package/dist/EnginePreviewData +0 -0
- package/dist/EngineTutorialData +0 -0
- package/dist/EngineWatchData +0 -0
- package/dist/index.cjs +1 -1
- package/dist/index.d.cts +1 -1
- package/package.json +9 -9
package/README.md
CHANGED
|
@@ -4,8 +4,8 @@ A recreation of BanG Dream! Girls Band Party engine in [Sonolus](https://sonolus
|
|
|
4
4
|
|
|
5
5
|
## Links
|
|
6
6
|
|
|
7
|
-
-
|
|
8
|
-
-
|
|
7
|
+
- [Sonolus Website](https://sonolus.com)
|
|
8
|
+
- [Sonolus Wiki](https://github.com/NonSpicyBurrito/sonolus-wiki)
|
|
9
9
|
|
|
10
10
|
## Installation
|
|
11
11
|
|
|
@@ -57,18 +57,18 @@ Partial database engine item compatible with [sonolus-express](https://github.co
|
|
|
57
57
|
|
|
58
58
|
Converts Bestdori chart to Level Data.
|
|
59
59
|
|
|
60
|
-
-
|
|
61
|
-
-
|
|
60
|
+
- `chart`: Bestdori chart.
|
|
61
|
+
- `offset`: offset (default: `0`).
|
|
62
62
|
|
|
63
63
|
### Assets
|
|
64
64
|
|
|
65
65
|
The following assets are exposed as package entry points:
|
|
66
66
|
|
|
67
|
-
-
|
|
68
|
-
-
|
|
69
|
-
-
|
|
70
|
-
-
|
|
71
|
-
-
|
|
72
|
-
-
|
|
67
|
+
- `EngineConfiguration`
|
|
68
|
+
- `EnginePlayData`
|
|
69
|
+
- `EngineWatchData`
|
|
70
|
+
- `EnginePreviewData`
|
|
71
|
+
- `EngineTutorialData`
|
|
72
|
+
- `EngineThumbnail`
|
|
73
73
|
|
|
74
74
|
In Node.js, you can obtain path to assets using `require.resolve('sonolus-bandori-engine/EngineConfiguration')` or `import.meta.resolve('sonolus-bandori-engine/EngineConfiguration')`.
|
package/dist/EnginePlayData
CHANGED
|
Binary file
|
package/dist/EnginePreviewData
CHANGED
|
Binary file
|
package/dist/EngineTutorialData
CHANGED
|
Binary file
|
package/dist/EngineWatchData
CHANGED
|
Binary file
|
package/dist/index.cjs
CHANGED
|
@@ -18,7 +18,7 @@ exports.databaseEngineItem = exports.version = exports.bestdoriToLevelData = voi
|
|
|
18
18
|
var convert_cjs_1 = require("./bestdori/convert.cjs");
|
|
19
19
|
Object.defineProperty(exports, "bestdoriToLevelData", { enumerable: true, get: function () { return convert_cjs_1.bestdoriToLevelData; } });
|
|
20
20
|
__exportStar(require("./bestdori/index.cjs"), exports);
|
|
21
|
-
exports.version = '1.5.
|
|
21
|
+
exports.version = '1.5.2';
|
|
22
22
|
exports.databaseEngineItem = {
|
|
23
23
|
name: 'bandori',
|
|
24
24
|
version: 12,
|
package/dist/index.d.cts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
export { bestdoriToLevelData } from './bestdori/convert.cjs';
|
|
2
2
|
export * from './bestdori/index.cjs';
|
|
3
|
-
export declare const version = "1.5.
|
|
3
|
+
export declare const version = "1.5.2";
|
|
4
4
|
export declare const databaseEngineItem: {
|
|
5
5
|
readonly name: "bandori";
|
|
6
6
|
readonly version: 12;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "sonolus-bandori-engine",
|
|
3
|
-
"version": "1.5.
|
|
3
|
+
"version": "1.5.2",
|
|
4
4
|
"description": "A recreation of BanG Dream! Girls Band Party engine in Sonolus",
|
|
5
5
|
"author": "NonSpicyBurrito",
|
|
6
6
|
"repository": "github:NonSpicyBurrito/sonolus-bandori-engine",
|
|
@@ -31,18 +31,18 @@
|
|
|
31
31
|
"build": "tsc -p ./lib && sonolus-cli --build ./play && sonolus-cli --build ./watch && sonolus-cli --build ./preview && sonolus-cli --build ./tutorial && node ./lib/build.mjs"
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@sonolus/core": "~7.9.
|
|
34
|
+
"@sonolus/core": "~7.9.3"
|
|
35
35
|
},
|
|
36
36
|
"devDependencies": {
|
|
37
|
-
"@eslint/js": "^9.
|
|
38
|
-
"@sonolus/sonolus.js": "~9.5.
|
|
37
|
+
"@eslint/js": "^9.16.0",
|
|
38
|
+
"@sonolus/sonolus.js": "~9.5.1",
|
|
39
39
|
"@types/eslint__js": "^8.42.3",
|
|
40
|
-
"@types/node": "^20.
|
|
41
|
-
"eslint": "^9.
|
|
40
|
+
"@types/node": "^20.17.9",
|
|
41
|
+
"eslint": "^9.16.0",
|
|
42
42
|
"eslint-config-prettier": "^9.1.0",
|
|
43
|
-
"prettier": "^3.
|
|
43
|
+
"prettier": "^3.4.1",
|
|
44
44
|
"prettier-plugin-organize-imports": "^4.1.0",
|
|
45
|
-
"typescript": "~5.
|
|
46
|
-
"typescript-eslint": "^8.
|
|
45
|
+
"typescript": "~5.7.2",
|
|
46
|
+
"typescript-eslint": "^8.16.0"
|
|
47
47
|
}
|
|
48
48
|
}
|