asajs 3.0.2 → 3.0.4
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/cjs/compilers/BindingCompiler.js +458 -0
- package/dist/cjs/compilers/BindingFunctions.js +267 -0
- package/dist/cjs/compilers/Compiler.js +158 -0
- package/dist/cjs/compilers/Compress.js +55 -0
- package/dist/cjs/compilers/Config.js +138 -0
- package/dist/cjs/compilers/Encoder.js +90 -0
- package/dist/cjs/compilers/Installer.js +123 -0
- package/dist/cjs/compilers/PreCompile.js +86 -0
- package/dist/cjs/compilers/generator/GenerateDir.js +51 -0
- package/dist/cjs/compilers/generator/JsonBuilder.js +66 -0
- package/dist/cjs/compilers/generator/LangBuilder.js +65 -0
- package/dist/cjs/compilers/generator/Log.js +45 -0
- package/dist/cjs/compilers/generator/Manifest.js +63 -0
- package/dist/cjs/compilers/generator/Save.js +87 -0
- package/dist/cjs/compilers/generator/SearchFiles.js +70 -0
- package/dist/cjs/compilers/generator/Sounds.js +91 -0
- package/dist/cjs/compilers/generator/Template.js +54 -0
- package/dist/cjs/compilers/generator/UIBuilder.js +123 -0
- package/dist/cjs/compilers/reader/Audio.js +81 -0
- package/dist/cjs/compilers/reader/Color.js +65 -0
- package/dist/cjs/compilers/reader/CurrentLine.js +36 -0
- package/dist/cjs/compilers/reader/Env.js +21 -0
- package/dist/cjs/compilers/reader/GlobalVariables.js +23 -0
- package/dist/cjs/compilers/reader/Object.js +44 -0
- package/dist/cjs/compilers/reader/ReadBinding.js +67 -0
- package/dist/cjs/compilers/reader/ReadProperties.js +118 -0
- package/dist/cjs/components/AddCollectionChill.js +41 -0
- package/dist/cjs/components/Animation.js +127 -0
- package/dist/cjs/components/AnimationKeyFrame.js +49 -0
- package/dist/cjs/components/Class.js +95 -0
- package/dist/cjs/components/LocalizeText.js +59 -0
- package/dist/cjs/components/Modify.js +377 -0
- package/dist/cjs/components/Random.js +104 -0
- package/dist/cjs/components/UI.js +387 -0
- package/dist/cjs/components/Vanilla.js +57915 -0
- package/dist/cjs/index.js +291 -0
- package/dist/cjs/package.json +1 -0
- package/dist/cjs/template.js +37 -0
- package/dist/cjs/types/components/ChildIdentifier.js +16 -0
- package/dist/cjs/types/components/Identifier.js +17 -0
- package/dist/cjs/types/components/NameCallback.js +16 -0
- package/dist/cjs/types/components/UIIdentifier.js +16 -0
- package/dist/cjs/types/components/UIInterface.js +16 -0
- package/dist/cjs/types/enums/Anchor.js +39 -0
- package/dist/cjs/types/enums/AnimTypes.js +39 -0
- package/dist/cjs/types/enums/BindingCondition.js +36 -0
- package/dist/cjs/types/enums/BindingName.js +4208 -0
- package/dist/cjs/types/enums/BindingType.js +35 -0
- package/dist/cjs/types/enums/ClipDirecion.js +35 -0
- package/dist/cjs/types/enums/Collection.js +202 -0
- package/dist/cjs/types/enums/Direction.js +33 -0
- package/dist/cjs/types/enums/EasingTypes.js +62 -0
- package/dist/cjs/types/enums/EnumColor.js +37 -0
- package/dist/cjs/types/enums/FocusNavigationMode.js +34 -0
- package/dist/cjs/types/enums/FontSize.js +34 -0
- package/dist/cjs/types/enums/FontType.js +35 -0
- package/dist/cjs/types/enums/GlobalVariables.js +345 -0
- package/dist/cjs/types/enums/InputModeCondition.js +33 -0
- package/dist/cjs/types/enums/ItemAuxID.js +31 -0
- package/dist/cjs/types/enums/JsonUIArrayName.js +36 -0
- package/dist/cjs/types/enums/MappingFrom.js +81 -0
- package/dist/cjs/types/enums/MappingTo.js +248 -0
- package/dist/cjs/types/enums/MappingTypes.js +34 -0
- package/dist/cjs/types/enums/Orientation.js +32 -0
- package/dist/cjs/types/enums/Renderer.js +68 -0
- package/dist/cjs/types/enums/Rotation.js +33 -0
- package/dist/cjs/types/enums/Scope.js +32 -0
- package/dist/cjs/types/enums/TextTypes.js +33 -0
- package/dist/cjs/types/enums/TextureFileSystem.js +41 -0
- package/dist/cjs/types/enums/Types.js +57 -0
- package/dist/cjs/types/objects/Animation.js +16 -0
- package/dist/cjs/types/objects/BindingHook.js +16 -0
- package/dist/cjs/types/objects/BindingInterface.js +16 -0
- package/dist/cjs/types/objects/ButtonMapping.js +16 -0
- package/dist/cjs/types/objects/Factory.js +16 -0
- package/dist/cjs/types/objects/Installer.js +53 -0
- package/dist/cjs/types/objects/Manifest.js +56 -0
- package/dist/cjs/types/objects/Modify.js +16 -0
- package/dist/cjs/types/objects/PropertyBag.js +16 -0
- package/dist/cjs/types/objects/Sound.js +16 -0
- package/dist/cjs/types/objects/Variables.js +16 -0
- package/dist/cjs/types/objects/elements/Button.js +17 -0
- package/dist/cjs/types/objects/elements/CollectionPanel.js +17 -0
- package/dist/cjs/types/objects/elements/Custom.js +17 -0
- package/dist/cjs/types/objects/elements/Dropdown.js +17 -0
- package/dist/cjs/types/objects/elements/EditBox.js +17 -0
- package/dist/cjs/types/objects/elements/Grid.js +16 -0
- package/dist/cjs/types/objects/elements/Image.js +17 -0
- package/dist/cjs/types/objects/elements/InputPanel.js +16 -0
- package/dist/cjs/types/objects/elements/Label.js +17 -0
- package/dist/cjs/types/objects/elements/PropertiesType.js +17 -0
- package/dist/cjs/types/objects/elements/Screen.js +17 -0
- package/dist/cjs/types/objects/elements/ScrollView.js +17 -0
- package/dist/cjs/types/objects/elements/ScrollbarBox.js +17 -0
- package/dist/cjs/types/objects/elements/ScrollbarTrack.js +17 -0
- package/dist/cjs/types/objects/elements/SelectionWheel.js +17 -0
- package/dist/cjs/types/objects/elements/Slider.js +17 -0
- package/dist/cjs/types/objects/elements/SliderBox.js +17 -0
- package/dist/cjs/types/objects/elements/StackPanel.js +16 -0
- package/dist/cjs/types/objects/elements/Toggle.js +17 -0
- package/dist/cjs/types/objects/elements/TooltipTrigger.js +16 -0
- package/dist/cjs/types/objects/elements/panel.js +16 -0
- package/dist/cjs/types/objects/properties/Buttons.js +16 -0
- package/dist/cjs/types/objects/properties/CollectionIndexs.js +16 -0
- package/dist/cjs/types/objects/properties/Collections.js +16 -0
- package/dist/cjs/types/objects/properties/Controls.js +16 -0
- package/dist/cjs/types/objects/properties/Dropdowns.js +16 -0
- package/dist/cjs/types/objects/properties/Focus.js +16 -0
- package/dist/cjs/types/objects/properties/FocusContainerCustom.js +16 -0
- package/dist/cjs/types/objects/properties/Grids.js +16 -0
- package/dist/cjs/types/objects/properties/Inputs.js +16 -0
- package/dist/cjs/types/objects/properties/Layouts.js +16 -0
- package/dist/cjs/types/objects/properties/Properties.js +16 -0
- package/dist/cjs/types/objects/properties/Renderers.js +16 -0
- package/dist/cjs/types/objects/properties/Screens.js +16 -0
- package/dist/cjs/types/objects/properties/ScrollViews.js +16 -0
- package/dist/cjs/types/objects/properties/SelectionWheels.js +16 -0
- package/dist/cjs/types/objects/properties/SliderBoxs.js +16 -0
- package/dist/cjs/types/objects/properties/Sliders.js +16 -0
- package/dist/cjs/types/objects/properties/Sounds.js +16 -0
- package/dist/cjs/types/objects/properties/Specials.js +16 -0
- package/dist/cjs/types/objects/properties/Sprites.js +16 -0
- package/dist/cjs/types/objects/properties/StackPanels.js +16 -0
- package/dist/cjs/types/objects/properties/TTS.js +16 -0
- package/dist/cjs/types/objects/properties/TextEdits.js +16 -0
- package/dist/cjs/types/objects/properties/Texts.js +16 -0
- package/dist/cjs/types/objects/properties/Toggles.js +16 -0
- package/dist/cjs/types/objects/properties/TooltipTriggers.js +16 -0
- package/dist/cjs/types/objects/properties/Variables.js +16 -0
- package/dist/cjs/types/values/Any.js +16 -0
- package/dist/cjs/types/values/Binding.js +16 -0
- package/dist/cjs/types/values/Bool.js +16 -0
- package/dist/cjs/types/values/ColorVector.js +16 -0
- package/dist/cjs/types/values/ElementPath.js +16 -0
- package/dist/cjs/types/values/Hex.js +16 -0
- package/dist/cjs/types/values/Number.js +16 -0
- package/dist/cjs/types/values/RangeVector.js +16 -0
- package/dist/cjs/types/values/Str.js +16 -0
- package/dist/cjs/types/values/StringVector.js +16 -0
- package/dist/cjs/types/values/TargetElementPath.js +16 -0
- package/dist/cjs/types/values/Variable.js +16 -0
- package/dist/cjs/types/values/Vector.js +16 -0
- package/dist/esm/index.js +68470 -0
- package/dist/esm/package.json +1 -0
- package/dist/types/compilers/BindingCompiler.d.ts +44 -0
- package/dist/types/compilers/BindingFunctions.d.ts +10 -0
- package/dist/types/compilers/Compiler.d.ts +3 -0
- package/dist/types/compilers/Compress.d.ts +1 -0
- package/dist/types/compilers/Config.d.ts +95 -0
- package/dist/types/compilers/Encoder.d.ts +11 -0
- package/dist/types/compilers/Installer.d.ts +14 -0
- package/dist/types/compilers/PreCompile.d.ts +4 -0
- package/dist/types/compilers/generator/GenerateDir.d.ts +1 -0
- package/dist/types/compilers/generator/JsonBuilder.d.ts +28 -0
- package/dist/types/compilers/generator/LangBuilder.d.ts +4 -0
- package/dist/types/compilers/generator/Log.d.ts +9 -0
- package/dist/types/compilers/generator/Manifest.d.ts +21 -0
- package/dist/types/compilers/generator/Save.d.ts +16 -0
- package/dist/types/compilers/generator/SearchFiles.d.ts +11 -0
- package/dist/types/compilers/generator/Sounds.d.ts +5 -0
- package/dist/types/compilers/generator/Template.d.ts +1 -0
- package/dist/types/compilers/generator/UIBuilder.d.ts +9 -0
- package/dist/types/compilers/reader/Audio.d.ts +1 -0
- package/dist/types/compilers/reader/Color.d.ts +5 -0
- package/dist/types/compilers/reader/CurrentLine.d.ts +1 -0
- package/dist/types/compilers/reader/Env.d.ts +1 -0
- package/dist/types/compilers/reader/GlobalVariables.d.ts +1 -0
- package/dist/types/compilers/reader/Object.d.ts +11 -0
- package/dist/types/compilers/reader/ReadBinding.d.ts +6 -0
- package/dist/types/compilers/reader/ReadProperties.d.ts +3 -0
- package/dist/types/components/AddCollectionChill.d.ts +6 -0
- package/dist/types/components/Animation.d.ts +15 -0
- package/dist/types/components/AnimationKeyFrame.d.ts +10 -0
- package/dist/types/components/Class.d.ts +68 -0
- package/dist/types/components/LocalizeText.d.ts +21 -0
- package/dist/types/components/Modify.d.ts +30 -0
- package/dist/types/components/Random.d.ts +20 -0
- package/dist/types/components/UI.d.ts +89 -0
- package/dist/types/components/Vanilla.d.ts +19729 -0
- package/dist/types/index.d.ts +136 -0
- package/dist/types/template.d.ts +4 -0
- package/dist/types/types/components/ChildIdentifier.d.ts +11 -0
- package/dist/types/types/components/Identifier.d.ts +4 -0
- package/dist/types/types/components/NameCallback.d.ts +3 -0
- package/dist/types/types/components/UIIdentifier.d.ts +4 -0
- package/dist/types/types/components/UIInterface.d.ts +16 -0
- package/dist/types/types/enums/Anchor.d.ts +11 -0
- package/dist/types/types/enums/AnimTypes.d.ts +11 -0
- package/dist/types/types/enums/BindingCondition.d.ts +8 -0
- package/dist/types/types/enums/BindingName.d.ts +4180 -0
- package/dist/types/types/enums/BindingType.d.ts +7 -0
- package/dist/types/types/enums/ClipDirecion.d.ts +7 -0
- package/dist/types/types/enums/Collection.d.ts +174 -0
- package/dist/types/types/enums/Direction.d.ts +5 -0
- package/dist/types/types/enums/EasingTypes.d.ts +34 -0
- package/dist/types/types/enums/EnumColor.d.ts +9 -0
- package/dist/types/types/enums/FocusNavigationMode.d.ts +6 -0
- package/dist/types/types/enums/FontSize.d.ts +6 -0
- package/dist/types/types/enums/FontType.d.ts +7 -0
- package/dist/types/types/enums/GlobalVariables.d.ts +317 -0
- package/dist/types/types/enums/InputModeCondition.d.ts +5 -0
- package/dist/types/types/enums/ItemAuxID.d.ts +3 -0
- package/dist/types/types/enums/JsonUIArrayName.d.ts +7 -0
- package/dist/types/types/enums/MappingFrom.d.ts +53 -0
- package/dist/types/types/enums/MappingTo.d.ts +220 -0
- package/dist/types/types/enums/MappingTypes.d.ts +6 -0
- package/dist/types/types/enums/Orientation.d.ts +4 -0
- package/dist/types/types/enums/Renderer.d.ts +40 -0
- package/dist/types/types/enums/Rotation.d.ts +5 -0
- package/dist/types/types/enums/Scope.d.ts +4 -0
- package/dist/types/types/enums/TextTypes.d.ts +5 -0
- package/dist/types/types/enums/TextureFileSystem.d.ts +13 -0
- package/dist/types/types/enums/Types.d.ts +29 -0
- package/dist/types/types/objects/Animation.d.ts +36 -0
- package/dist/types/types/objects/BindingHook.d.ts +1 -0
- package/dist/types/types/objects/BindingInterface.d.ts +21 -0
- package/dist/types/types/objects/ButtonMapping.d.ts +18 -0
- package/dist/types/types/objects/Factory.d.ts +2 -0
- package/dist/types/types/objects/Installer.d.ts +26 -0
- package/dist/types/types/objects/Manifest.d.ts +74 -0
- package/dist/types/types/objects/Modify.d.ts +52 -0
- package/dist/types/types/objects/PropertyBag.d.ts +2 -0
- package/dist/types/types/objects/Sound.d.ts +8 -0
- package/dist/types/types/objects/Variables.d.ts +1 -0
- package/dist/types/types/objects/elements/Button.d.ts +4 -0
- package/dist/types/types/objects/elements/CollectionPanel.d.ts +4 -0
- package/dist/types/types/objects/elements/Custom.d.ts +5 -0
- package/dist/types/types/objects/elements/Dropdown.d.ts +4 -0
- package/dist/types/types/objects/elements/EditBox.d.ts +4 -0
- package/dist/types/types/objects/elements/Grid.d.ts +4 -0
- package/dist/types/types/objects/elements/Image.d.ts +4 -0
- package/dist/types/types/objects/elements/InputPanel.d.ts +7 -0
- package/dist/types/types/objects/elements/Label.d.ts +4 -0
- package/dist/types/types/objects/elements/PropertiesType.d.ts +45 -0
- package/dist/types/types/objects/elements/Screen.d.ts +4 -0
- package/dist/types/types/objects/elements/ScrollView.d.ts +5 -0
- package/dist/types/types/objects/elements/ScrollbarBox.d.ts +4 -0
- package/dist/types/types/objects/elements/ScrollbarTrack.d.ts +4 -0
- package/dist/types/types/objects/elements/SelectionWheel.d.ts +4 -0
- package/dist/types/types/objects/elements/Slider.d.ts +4 -0
- package/dist/types/types/objects/elements/SliderBox.d.ts +5 -0
- package/dist/types/types/objects/elements/StackPanel.d.ts +7 -0
- package/dist/types/types/objects/elements/Toggle.d.ts +4 -0
- package/dist/types/types/objects/elements/TooltipTrigger.d.ts +8 -0
- package/dist/types/types/objects/elements/panel.d.ts +6 -0
- package/dist/types/types/objects/properties/Buttons.d.ts +5 -0
- package/dist/types/types/objects/properties/CollectionIndexs.d.ts +4 -0
- package/dist/types/types/objects/properties/Collections.d.ts +6 -0
- package/dist/types/types/objects/properties/Controls.d.ts +27 -0
- package/dist/types/types/objects/properties/Dropdowns.d.ts +6 -0
- package/dist/types/types/objects/properties/Focus.d.ts +28 -0
- package/dist/types/types/objects/properties/FocusContainerCustom.d.ts +5 -0
- package/dist/types/types/objects/properties/Grids.d.ts +15 -0
- package/dist/types/types/objects/properties/Inputs.d.ts +13 -0
- package/dist/types/types/objects/properties/Layouts.d.ts +35 -0
- package/dist/types/types/objects/properties/Properties.d.ts +27 -0
- package/dist/types/types/objects/properties/Renderers.d.ts +5 -0
- package/dist/types/types/objects/properties/Screens.d.ts +23 -0
- package/dist/types/types/objects/properties/ScrollViews.d.ts +17 -0
- package/dist/types/types/objects/properties/SelectionWheels.d.ts +13 -0
- package/dist/types/types/objects/properties/SliderBoxs.d.ts +6 -0
- package/dist/types/types/objects/properties/Sliders.d.ts +23 -0
- package/dist/types/types/objects/properties/Sounds.d.ts +10 -0
- package/dist/types/types/objects/properties/Specials.d.ts +60 -0
- package/dist/types/types/objects/properties/Sprites.d.ts +33 -0
- package/dist/types/types/objects/properties/StackPanels.d.ts +5 -0
- package/dist/types/types/objects/properties/TTS.d.ts +24 -0
- package/dist/types/types/objects/properties/TextEdits.d.ts +19 -0
- package/dist/types/types/objects/properties/Texts.d.ts +26 -0
- package/dist/types/types/objects/properties/Toggles.d.ts +24 -0
- package/dist/types/types/objects/properties/TooltipTriggers.d.ts +7 -0
- package/dist/types/types/objects/properties/Variables.d.ts +3 -0
- package/dist/types/types/values/Any.d.ts +4 -0
- package/dist/types/types/values/Binding.d.ts +2 -0
- package/dist/types/types/values/Bool.d.ts +2 -0
- package/dist/types/types/values/ColorVector.d.ts +6 -0
- package/dist/types/types/values/ElementPath.d.ts +2 -0
- package/dist/types/types/values/Hex.d.ts +1 -0
- package/dist/types/types/values/Number.d.ts +4 -0
- package/dist/types/types/values/RangeVector.d.ts +5 -0
- package/dist/types/types/values/Str.d.ts +2 -0
- package/dist/types/types/values/StringVector.d.ts +6 -0
- package/dist/types/types/values/TargetElementPath.d.ts +1 -0
- package/dist/types/types/values/Variable.d.ts +1 -0
- package/dist/types/types/values/Vector.d.ts +5 -0
- package/package.json +4 -4
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { Bool } from "../../values/Bool";
|
|
2
|
+
import { Int } from "../../values/Number";
|
|
3
|
+
import { Str } from "../../values/Str";
|
|
4
|
+
export interface Toggles {
|
|
5
|
+
radio_toggle_group?: Bool;
|
|
6
|
+
toggle_name?: Str;
|
|
7
|
+
toggle_default_state?: Bool;
|
|
8
|
+
toggle_group_forced_index?: Int;
|
|
9
|
+
toggle_group_default_selected?: Int;
|
|
10
|
+
reset_on_focus_lost?: Bool;
|
|
11
|
+
toggle_on_hover?: Str;
|
|
12
|
+
toggle_on_button?: Str;
|
|
13
|
+
toggle_off_button?: Str;
|
|
14
|
+
enable_directional_toggling?: Bool;
|
|
15
|
+
toggle_grid_collection_name?: Str;
|
|
16
|
+
unchecked_control?: Str;
|
|
17
|
+
checked_control?: Str;
|
|
18
|
+
unchecked_hover_control?: Str;
|
|
19
|
+
checked_hover_control?: Str;
|
|
20
|
+
unchecked_locked_control?: Str;
|
|
21
|
+
checked_locked_control?: Str;
|
|
22
|
+
unchecked_locked_hover_control?: Str;
|
|
23
|
+
checked_locked_hover_control?: Str;
|
|
24
|
+
}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { RangeVector3, RangeVector4 } from "./RangeVector";
|
|
2
|
+
import { Var } from "./Variable";
|
|
3
|
+
export type ColorHeximal = `#${string}`;
|
|
4
|
+
export type ColorVector3 = Var | [ColorHeximal] | RangeVector3;
|
|
5
|
+
export type ColorVector4 = Var | [ColorHeximal] | RangeVector4;
|
|
6
|
+
export type ColorVector = ColorVector3 | ColorVector4;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export type HexChar = 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 'a' | 'A' | 'b' | 'B' | 'c' | 'C' | 'd' | 'D' | 'e' | 'E' | 'f' | 'F';
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { RangeFloat } from "./Number";
|
|
2
|
+
import { Var } from "./Variable";
|
|
3
|
+
export type RangeVector3 = Var | [RangeFloat, RangeFloat, RangeFloat];
|
|
4
|
+
export type RangeVector4 = Var | [RangeFloat, RangeFloat, RangeFloat, RangeFloat];
|
|
5
|
+
export type RangeVector = RangeVector3 | RangeVector4;
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { Float } from "./Number";
|
|
2
|
+
import { Var } from "./Variable";
|
|
3
|
+
export type StringVector2 = Var | [Float | string, Float | string];
|
|
4
|
+
export type StringVector3 = Var | [Float | string, Float | string, Float | string];
|
|
5
|
+
export type StringVector4 = Var | [Float | string, Float | string, Float | string, Float | string];
|
|
6
|
+
export type StringVector = StringVector2 | StringVector3 | StringVector4;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export type TargetElementPath = `@${string}.${string}`;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export type Var = `$${string}` | `(${string})` | [`$${string}`, any];
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { Var } from "./Variable";
|
|
2
|
+
export type Vector2 = Var | [number | string, number | string];
|
|
3
|
+
export type Vector3 = Var | [number | string, number | string, number | string];
|
|
4
|
+
export type Vector4 = Var | [number | string, number | string, number | string, number | string];
|
|
5
|
+
export type Vector = Vector2 | Vector3 | Vector4;
|
package/package.json
CHANGED
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
"jsonc-parser": "^3.3.1"
|
|
14
14
|
},
|
|
15
15
|
"name": "asajs",
|
|
16
|
-
"version": "3.0.
|
|
16
|
+
"version": "3.0.4",
|
|
17
17
|
"description": "Make your Minecraft JsonUI with ScriptingAPI",
|
|
18
18
|
"main": "./dist/cjs/index.js",
|
|
19
19
|
"module": "./dist/esm/index.js",
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
},
|
|
31
31
|
"repository": {
|
|
32
32
|
"type": "git",
|
|
33
|
-
"url": "git+https://github.com/asakiyuki/
|
|
33
|
+
"url": "git+https://github.com/asakiyuki/asajs.git"
|
|
34
34
|
},
|
|
35
35
|
"keywords": [
|
|
36
36
|
"Minecraft",
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
],
|
|
43
43
|
"license": "MIT",
|
|
44
44
|
"bugs": {
|
|
45
|
-
"url": "https://github.com/asakiyuki/
|
|
45
|
+
"url": "https://github.com/asakiyuki/asajs/issues"
|
|
46
46
|
},
|
|
47
|
-
"homepage": "https://github.com/asakiyuki/
|
|
47
|
+
"homepage": "https://github.com/asakiyuki/asajs#readme"
|
|
48
48
|
}
|