sonolus-voez-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/README.md +14 -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 +2 -2
- package/dist/index.d.cts +2 -2
- package/package.json +10 -11
package/README.md
CHANGED
|
@@ -37,6 +37,20 @@ npm install sonolus-voez-engine
|
|
|
37
37
|
| `VOEZ Track Glow Right Border` |
|
|
38
38
|
| `VOEZ Flick` |
|
|
39
39
|
|
|
40
|
+
### Particle Effects
|
|
41
|
+
|
|
42
|
+
| Name |
|
|
43
|
+
| ---------------------- |
|
|
44
|
+
| `VOEZ Hit Perfect` |
|
|
45
|
+
| `VOEZ Hit Great` |
|
|
46
|
+
| `VOEZ Hit Good` |
|
|
47
|
+
| `VOEZ Hold Perfect` |
|
|
48
|
+
| `VOEZ Hold Great` |
|
|
49
|
+
| `VOEZ Hold Good` |
|
|
50
|
+
| `VOEZ Release Perfect` |
|
|
51
|
+
| `VOEZ Release Great` |
|
|
52
|
+
| `VOEZ Release Good` |
|
|
53
|
+
|
|
40
54
|
## Documentation
|
|
41
55
|
|
|
42
56
|
### `version`
|
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("./vc/index.cjs"), exports);
|
|
|
21
21
|
var convert_cjs_2 = require("./vs/convert.cjs");
|
|
22
22
|
Object.defineProperty(exports, "vsToVC", { enumerable: true, get: function () { return convert_cjs_2.vsToVC; } });
|
|
23
23
|
__exportStar(require("./vs/index.cjs"), exports);
|
|
24
|
-
exports.version = '1.5.
|
|
24
|
+
exports.version = '1.5.3';
|
|
25
25
|
exports.databaseEngineItem = {
|
|
26
26
|
name: 'voez',
|
|
27
27
|
version: 13,
|
|
@@ -32,7 +32,7 @@ exports.databaseEngineItem = {
|
|
|
32
32
|
en: 'VOEZ',
|
|
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,7 +2,7 @@ export { vcToLevelData } from './vc/convert.cjs';
|
|
|
2
2
|
export * from './vc/index.cjs';
|
|
3
3
|
export { vsToVC } from './vs/convert.cjs';
|
|
4
4
|
export * from './vs/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: "voez";
|
|
8
8
|
readonly version: 13;
|
|
@@ -13,7 +13,7 @@ export declare const databaseEngineItem: {
|
|
|
13
13
|
readonly en: "VOEZ";
|
|
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-voez-engine",
|
|
3
|
-
"version": "1.5.
|
|
3
|
+
"version": "1.5.3",
|
|
4
4
|
"description": "A recreation of VOEZ engine in Sonolus",
|
|
5
5
|
"author": "NonSpicyBurrito",
|
|
6
6
|
"repository": "github:NonSpicyBurrito/sonolus-voez-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.2"
|
|
35
35
|
},
|
|
36
36
|
"devDependencies": {
|
|
37
|
-
"@eslint/js": "^9.
|
|
38
|
-
"@sonolus/sonolus.js": "~9.5.
|
|
39
|
-
"@types/
|
|
40
|
-
"
|
|
41
|
-
"eslint": "^
|
|
42
|
-
"
|
|
43
|
-
"prettier": "^3.5.1",
|
|
37
|
+
"@eslint/js": "^9.28.0",
|
|
38
|
+
"@sonolus/sonolus.js": "~9.5.6",
|
|
39
|
+
"@types/node": "^20.17.57",
|
|
40
|
+
"eslint": "^9.28.0",
|
|
41
|
+
"eslint-config-prettier": "^10.1.5",
|
|
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.3",
|
|
45
|
+
"typescript-eslint": "^8.33.0"
|
|
47
46
|
}
|
|
48
47
|
}
|