sonolus-deemo-engine 1.5.1 → 1.5.3
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/dist/EngineConfiguration +0 -0
- package/dist/EnginePlayData +0 -0
- package/dist/EnginePreviewData +0 -0
- package/dist/EngineTutorialData +0 -0
- package/dist/EngineWatchData +0 -0
- package/dist/index.cjs +3 -3
- package/dist/index.d.cts +3 -3
- package/package.json +10 -11
package/dist/EngineConfiguration
CHANGED
|
Binary file
|
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,10 +21,10 @@ __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.3';
|
|
25
25
|
exports.databaseEngineItem = {
|
|
26
26
|
name: 'deemo',
|
|
27
|
-
version:
|
|
27
|
+
version: 13,
|
|
28
28
|
title: {
|
|
29
29
|
en: 'Deemo',
|
|
30
30
|
},
|
|
@@ -32,7 +32,7 @@ exports.databaseEngineItem = {
|
|
|
32
32
|
en: 'Deemo',
|
|
33
33
|
},
|
|
34
34
|
author: {
|
|
35
|
-
en: 'Burrito',
|
|
35
|
+
en: 'Burrito#1000',
|
|
36
36
|
},
|
|
37
37
|
description: {
|
|
38
38
|
en: [
|
package/dist/index.d.cts
CHANGED
|
@@ -2,10 +2,10 @@ 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.3";
|
|
6
6
|
export declare const databaseEngineItem: {
|
|
7
7
|
readonly name: "deemo";
|
|
8
|
-
readonly version:
|
|
8
|
+
readonly version: 13;
|
|
9
9
|
readonly title: {
|
|
10
10
|
readonly en: "Deemo";
|
|
11
11
|
};
|
|
@@ -13,7 +13,7 @@ export declare const databaseEngineItem: {
|
|
|
13
13
|
readonly en: "Deemo";
|
|
14
14
|
};
|
|
15
15
|
readonly author: {
|
|
16
|
-
readonly en: "Burrito";
|
|
16
|
+
readonly en: "Burrito#1000";
|
|
17
17
|
};
|
|
18
18
|
readonly description: {
|
|
19
19
|
readonly en: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "sonolus-deemo-engine",
|
|
3
|
-
"version": "1.5.
|
|
3
|
+
"version": "1.5.3",
|
|
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,17 @@
|
|
|
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.
|
|
34
|
+
"@sonolus/core": "~7.13.0"
|
|
35
35
|
},
|
|
36
36
|
"devDependencies": {
|
|
37
|
-
"@eslint/js": "^9.
|
|
38
|
-
"@sonolus/sonolus.js": "~9.5.
|
|
39
|
-
"@types/
|
|
40
|
-
"
|
|
41
|
-
"eslint": "^
|
|
42
|
-
"
|
|
43
|
-
"prettier": "^3.4.1",
|
|
37
|
+
"@eslint/js": "^9.23.0",
|
|
38
|
+
"@sonolus/sonolus.js": "~9.5.5",
|
|
39
|
+
"@types/node": "^20.17.28",
|
|
40
|
+
"eslint": "^9.23.0",
|
|
41
|
+
"eslint-config-prettier": "^10.1.1",
|
|
42
|
+
"prettier": "^3.5.3",
|
|
44
43
|
"prettier-plugin-organize-imports": "^4.1.0",
|
|
45
|
-
"typescript": "~5.
|
|
46
|
-
"typescript-eslint": "^8.
|
|
44
|
+
"typescript": "~5.8.2",
|
|
45
|
+
"typescript-eslint": "^8.28.0"
|
|
47
46
|
}
|
|
48
47
|
}
|