sonolus-deemo-engine 1.5.0 → 1.5.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 +11 -11
- 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 Deemo engine in [Sonolus](https://sonolus.com).
|
|
|
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
|
|
|
@@ -27,24 +27,24 @@ Partial database engine item compatible with [sonolus-express](https://github.co
|
|
|
27
27
|
|
|
28
28
|
Converts DS (Deemo Source) to DC (Deemo Chart).
|
|
29
29
|
|
|
30
|
-
-
|
|
30
|
+
- `ds`: Deemo Source.
|
|
31
31
|
|
|
32
32
|
### `dcToLevelData(dc, offset?)`
|
|
33
33
|
|
|
34
34
|
Converts DC (Deemo Chart) to Level Data.
|
|
35
35
|
|
|
36
|
-
-
|
|
37
|
-
-
|
|
36
|
+
- `dc`: Deemo Chart.
|
|
37
|
+
- `offset`: offset (default: `0`).
|
|
38
38
|
|
|
39
39
|
### Assets
|
|
40
40
|
|
|
41
41
|
The following assets are exposed as package entry points:
|
|
42
42
|
|
|
43
|
-
-
|
|
44
|
-
-
|
|
45
|
-
-
|
|
46
|
-
-
|
|
47
|
-
-
|
|
48
|
-
-
|
|
43
|
+
- `EngineConfiguration`
|
|
44
|
+
- `EnginePlayData`
|
|
45
|
+
- `EngineWatchData`
|
|
46
|
+
- `EnginePreviewData`
|
|
47
|
+
- `EngineTutorialData`
|
|
48
|
+
- `EngineThumbnail`
|
|
49
49
|
|
|
50
50
|
In Node.js, you can obtain path to assets using `require.resolve('sonolus-deemo-engine/EngineConfiguration')` or `import.meta.resolve('sonolus-deemo-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
|
@@ -21,7 +21,7 @@ __exportStar(require("./dc/index.cjs"), exports);
|
|
|
21
21
|
var convert_cjs_2 = require("./ds/convert.cjs");
|
|
22
22
|
Object.defineProperty(exports, "dsToDC", { enumerable: true, get: function () { return convert_cjs_2.dsToDC; } });
|
|
23
23
|
__exportStar(require("./ds/index.cjs"), exports);
|
|
24
|
-
exports.version = '1.5.
|
|
24
|
+
exports.version = '1.5.1';
|
|
25
25
|
exports.databaseEngineItem = {
|
|
26
26
|
name: 'deemo',
|
|
27
27
|
version: 12,
|
package/dist/index.d.cts
CHANGED
|
@@ -2,7 +2,7 @@ export { dcToLevelData } from './dc/convert.cjs';
|
|
|
2
2
|
export * from './dc/index.cjs';
|
|
3
3
|
export { dsToDC } from './ds/convert.cjs';
|
|
4
4
|
export * from './ds/index.cjs';
|
|
5
|
-
export declare const version = "1.5.
|
|
5
|
+
export declare const version = "1.5.1";
|
|
6
6
|
export declare const databaseEngineItem: {
|
|
7
7
|
readonly name: "deemo";
|
|
8
8
|
readonly version: 12;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "sonolus-deemo-engine",
|
|
3
|
-
"version": "1.5.
|
|
3
|
+
"version": "1.5.1",
|
|
4
4
|
"description": "A recreation of Deemo engine in Sonolus",
|
|
5
5
|
"author": "NonSpicyBurrito",
|
|
6
6
|
"repository": "github:NonSpicyBurrito/sonolus-deemo-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.17.
|
|
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
|
}
|