@wexample/js-app 0.0.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/.iml +7 -0
- package/.wex/config.yml +3 -0
- package/.wex/python/app_manager/.python-version +1 -0
- package/.wex/python/app_manager/__main__.py +34 -0
- package/.wex/python/app_manager/app_workdir.py +37 -0
- package/.wex/python/app_manager/pyproject.toml +13 -0
- package/.wex/python/app_manager/requirements.txt +223 -0
- package/README.md +135 -0
- package/package.json +8 -0
- package/version.txt +1 -0
package/.iml
ADDED
package/.wex/config.yml
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
3.12
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
#!/usr/bin/env python3
|
|
2
|
+
"""Main entry point for the application."""
|
|
3
|
+
from wexample_wex_core.common.app_manager_kernel import AppManagerKernel
|
|
4
|
+
|
|
5
|
+
if __name__ == "__main__":
|
|
6
|
+
try:
|
|
7
|
+
from wexample_wex_addon_dev_python.python_addon_manager import (
|
|
8
|
+
PythonAddonManager,
|
|
9
|
+
)
|
|
10
|
+
from wexample_wex_core.addons.default.default_addon_manager import (
|
|
11
|
+
DefaultAddonManager,
|
|
12
|
+
)
|
|
13
|
+
from wexample_wex_core.addons.git.git_addon_manager import (
|
|
14
|
+
GitAddonManager,
|
|
15
|
+
)
|
|
16
|
+
from wexample_wex_core.common.kernel import Kernel
|
|
17
|
+
from wexample_wex_addon_filestate.filestate_addon_manager import FilestateAddonManager
|
|
18
|
+
from wexample_wex_addon_app.app_addon_manager import AppAddonManager
|
|
19
|
+
|
|
20
|
+
(
|
|
21
|
+
AppManagerKernel(
|
|
22
|
+
entrypoint_path=__file__,
|
|
23
|
+
)
|
|
24
|
+
.setup(addons=[
|
|
25
|
+
AppAddonManager,
|
|
26
|
+
DefaultAddonManager,
|
|
27
|
+
GitAddonManager,
|
|
28
|
+
])
|
|
29
|
+
.exec_argv()
|
|
30
|
+
)
|
|
31
|
+
except Exception as e:
|
|
32
|
+
from wexample_app.helpers.debug import debug_handle_app_error
|
|
33
|
+
|
|
34
|
+
debug_handle_app_error(e)
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
from __future__ import annotations
|
|
2
|
+
|
|
3
|
+
from wexample_config.const.types import DictConfig
|
|
4
|
+
from wexample_wex_addon_dev_javascript.workdir.javascript_package_workdir import JavascriptPackageWorkdir
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
class AppWorkdir(JavascriptPackageWorkdir):
|
|
8
|
+
def prepare_value(self, raw_value: DictConfig | None = None) -> DictConfig:
|
|
9
|
+
from wexample_helpers.helpers.string import string_to_kebab_case
|
|
10
|
+
|
|
11
|
+
raw_value = super().prepare_value(raw_value=raw_value)
|
|
12
|
+
|
|
13
|
+
def _build_remote_github(target: AppWorkdir) -> str:
|
|
14
|
+
return f"git@github.com:wexample/{string_to_kebab_case(target.get_project_name())}.git"
|
|
15
|
+
|
|
16
|
+
def _build_remote_gitlab(target: AppWorkdir) -> str:
|
|
17
|
+
return f"ssh://git@gitlab.wexample.com:4567/wexample-javascript/{string_to_kebab_case(target.get_project_name())}.git"
|
|
18
|
+
|
|
19
|
+
raw_value["git"] = {
|
|
20
|
+
"main_branch": "main",
|
|
21
|
+
"remote": [
|
|
22
|
+
{
|
|
23
|
+
"name": "origin",
|
|
24
|
+
"type": "gitlab",
|
|
25
|
+
"url": _build_remote_gitlab,
|
|
26
|
+
"create_remote": True,
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
"name": "github",
|
|
30
|
+
"type": "github",
|
|
31
|
+
"url": _build_remote_github,
|
|
32
|
+
"create_remote": True,
|
|
33
|
+
},
|
|
34
|
+
]
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
return raw_value
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
[project]
|
|
2
|
+
name = "app-manager"
|
|
3
|
+
version = "0.0.1"
|
|
4
|
+
description = "App manager entrypoint"
|
|
5
|
+
requires-python = ">=3.10"
|
|
6
|
+
dependencies = [
|
|
7
|
+
"jinja2",
|
|
8
|
+
"wexample-wex-addon-app==0.0.53",
|
|
9
|
+
"wexample-wex-addon-dev-javascript==0.0.55",
|
|
10
|
+
]
|
|
11
|
+
|
|
12
|
+
[tool.pdm]
|
|
13
|
+
distribution = false
|
|
@@ -0,0 +1,223 @@
|
|
|
1
|
+
#
|
|
2
|
+
# This file is autogenerated by pip-compile with Python 3.12
|
|
3
|
+
# by the following command:
|
|
4
|
+
#
|
|
5
|
+
# pip-compile --output-file=/home/weeger/Desktop/WIP/WEB/WEXAMPLE/PACKAGES/JAVASCRIPT/packages/js-pseudocode/.wex/python/app_manager/requirements.txt /home/weeger/Desktop/WIP/WEB/WEXAMPLE/PACKAGES/JAVASCRIPT/packages/js-pseudocode/.wex/python/app_manager/pyproject.toml
|
|
6
|
+
#
|
|
7
|
+
annotated-types==0.7.0
|
|
8
|
+
# via pydantic
|
|
9
|
+
astroid==4.0.2
|
|
10
|
+
# via pylint
|
|
11
|
+
attrs==25.4.0
|
|
12
|
+
# via
|
|
13
|
+
# cattrs
|
|
14
|
+
# wexample-api
|
|
15
|
+
# wexample-app
|
|
16
|
+
# wexample-config
|
|
17
|
+
# wexample-file
|
|
18
|
+
# wexample-filestate
|
|
19
|
+
# wexample-filestate-git
|
|
20
|
+
# wexample-filestate-python
|
|
21
|
+
# wexample-helpers
|
|
22
|
+
# wexample-helpers-git
|
|
23
|
+
# wexample-helpers-yaml
|
|
24
|
+
# wexample-prompt
|
|
25
|
+
# wexample-wex-addon-app
|
|
26
|
+
# wexample-wex-addon-dev-python
|
|
27
|
+
# wexample-wex-addon-filestate
|
|
28
|
+
# wexample-wex-core
|
|
29
|
+
autoflake==2.3.1
|
|
30
|
+
# via wexample-filestate-python
|
|
31
|
+
black==25.11.0
|
|
32
|
+
# via wexample-filestate-python
|
|
33
|
+
cattrs==25.3.0
|
|
34
|
+
# via
|
|
35
|
+
# wexample-api
|
|
36
|
+
# wexample-app
|
|
37
|
+
# wexample-config
|
|
38
|
+
# wexample-file
|
|
39
|
+
# wexample-filestate
|
|
40
|
+
# wexample-filestate-git
|
|
41
|
+
# wexample-filestate-python
|
|
42
|
+
# wexample-helpers
|
|
43
|
+
# wexample-helpers-git
|
|
44
|
+
# wexample-helpers-yaml
|
|
45
|
+
# wexample-prompt
|
|
46
|
+
# wexample-wex-addon-app
|
|
47
|
+
# wexample-wex-addon-dev-python
|
|
48
|
+
# wexample-wex-addon-filestate
|
|
49
|
+
# wexample-wex-core
|
|
50
|
+
certifi==2025.11.12
|
|
51
|
+
# via requests
|
|
52
|
+
charset-normalizer==3.4.4
|
|
53
|
+
# via requests
|
|
54
|
+
click==8.3.1
|
|
55
|
+
# via
|
|
56
|
+
# black
|
|
57
|
+
# wexample-wex-core
|
|
58
|
+
colorama==0.4.6
|
|
59
|
+
# via wexample-prompt
|
|
60
|
+
dill==0.4.0
|
|
61
|
+
# via pylint
|
|
62
|
+
dotenv==0.9.9
|
|
63
|
+
# via wexample-app
|
|
64
|
+
flynt==1.0.6
|
|
65
|
+
# via wexample-filestate-python
|
|
66
|
+
gitdb==4.0.12
|
|
67
|
+
# via gitpython
|
|
68
|
+
gitpython==3.1.45
|
|
69
|
+
# via wexample-helpers-git
|
|
70
|
+
idna==3.11
|
|
71
|
+
# via requests
|
|
72
|
+
inquirerpy==0.3.4
|
|
73
|
+
# via wexample-prompt
|
|
74
|
+
isort==7.0.0
|
|
75
|
+
# via
|
|
76
|
+
# pylint
|
|
77
|
+
# wexample-filestate-python
|
|
78
|
+
jinja2==3.1.6
|
|
79
|
+
# via
|
|
80
|
+
# app-manager (/home/weeger/Desktop/WIP/WEB/WEXAMPLE/PACKAGES/JAVASCRIPT/packages/js-pseudocode/.wex/python/app_manager/pyproject.toml)
|
|
81
|
+
# wexample-wex-addon-dev-python
|
|
82
|
+
libcst==1.8.6
|
|
83
|
+
# via wexample-filestate-python
|
|
84
|
+
markupsafe==3.0.3
|
|
85
|
+
# via jinja2
|
|
86
|
+
mccabe==0.7.0
|
|
87
|
+
# via pylint
|
|
88
|
+
mypy-extensions==1.1.0
|
|
89
|
+
# via black
|
|
90
|
+
networkx==3.6
|
|
91
|
+
# via wexample-wex-addon-dev-python
|
|
92
|
+
nodeenv==1.9.1
|
|
93
|
+
# via pyright
|
|
94
|
+
packaging==25.0
|
|
95
|
+
# via
|
|
96
|
+
# black
|
|
97
|
+
# wexample-filestate-python
|
|
98
|
+
pathspec==0.12.1
|
|
99
|
+
# via black
|
|
100
|
+
pfzy==0.3.4
|
|
101
|
+
# via inquirerpy
|
|
102
|
+
platformdirs==4.5.0
|
|
103
|
+
# via
|
|
104
|
+
# black
|
|
105
|
+
# pylint
|
|
106
|
+
prompt-toolkit==3.0.52
|
|
107
|
+
# via inquirerpy
|
|
108
|
+
pydantic==2.12.5
|
|
109
|
+
# via wexample-config
|
|
110
|
+
pydantic-core==2.41.5
|
|
111
|
+
# via pydantic
|
|
112
|
+
pyflakes==3.4.0
|
|
113
|
+
# via autoflake
|
|
114
|
+
pylint==4.0.3
|
|
115
|
+
# via wexample-wex-addon-dev-python
|
|
116
|
+
pyright==1.1.407
|
|
117
|
+
# via wexample-wex-addon-dev-python
|
|
118
|
+
python-dotenv==1.2.1
|
|
119
|
+
# via
|
|
120
|
+
# dotenv
|
|
121
|
+
# wexample-app
|
|
122
|
+
# wexample-filestate
|
|
123
|
+
pytokens==0.3.0
|
|
124
|
+
# via black
|
|
125
|
+
pyupgrade==3.21.2
|
|
126
|
+
# via wexample-filestate-python
|
|
127
|
+
pyyaml==6.0.3
|
|
128
|
+
# via
|
|
129
|
+
# libcst
|
|
130
|
+
# wexample-helpers-yaml
|
|
131
|
+
readchar==4.2.1
|
|
132
|
+
# via wexample-prompt
|
|
133
|
+
requests==2.32.5
|
|
134
|
+
# via
|
|
135
|
+
# wexample-api
|
|
136
|
+
# wexample-filestate-git
|
|
137
|
+
smmap==5.0.2
|
|
138
|
+
# via gitdb
|
|
139
|
+
tokenize-rt==6.2.0
|
|
140
|
+
# via pyupgrade
|
|
141
|
+
tomli==2.3.0
|
|
142
|
+
# via wexample-filestate-python
|
|
143
|
+
tomlkit==0.13.3
|
|
144
|
+
# via
|
|
145
|
+
# pylint
|
|
146
|
+
# wexample-filestate
|
|
147
|
+
typing-extensions==4.15.0
|
|
148
|
+
# via
|
|
149
|
+
# cattrs
|
|
150
|
+
# pydantic
|
|
151
|
+
# pydantic-core
|
|
152
|
+
# pyright
|
|
153
|
+
# typing-inspection
|
|
154
|
+
typing-inspection==0.4.2
|
|
155
|
+
# via pydantic
|
|
156
|
+
urllib3==2.5.0
|
|
157
|
+
# via requests
|
|
158
|
+
wcwidth==0.2.14
|
|
159
|
+
# via
|
|
160
|
+
# prompt-toolkit
|
|
161
|
+
# wexample-prompt
|
|
162
|
+
wexample-api==0.0.80
|
|
163
|
+
# via
|
|
164
|
+
# wexample-filestate-git
|
|
165
|
+
# wexample-filestate-python
|
|
166
|
+
wexample-app==0.0.68
|
|
167
|
+
# via wexample-wex-core
|
|
168
|
+
wexample-config==0.0.94
|
|
169
|
+
# via wexample-filestate
|
|
170
|
+
wexample-event==0.0.76
|
|
171
|
+
# via wexample-filestate
|
|
172
|
+
wexample-file==0.0.49
|
|
173
|
+
# via
|
|
174
|
+
# app-manager (/home/weeger/Desktop/WIP/WEB/WEXAMPLE/PACKAGES/JAVASCRIPT/packages/js-pseudocode/.wex/python/app_manager/pyproject.toml)
|
|
175
|
+
# wexample-filestate
|
|
176
|
+
wexample-filestate==0.0.71
|
|
177
|
+
# via
|
|
178
|
+
# app-manager (/home/weeger/Desktop/WIP/WEB/WEXAMPLE/PACKAGES/JAVASCRIPT/packages/js-pseudocode/.wex/python/app_manager/pyproject.toml)
|
|
179
|
+
# wexample-app
|
|
180
|
+
# wexample-filestate-git
|
|
181
|
+
# wexample-filestate-python
|
|
182
|
+
# wexample-wex-core
|
|
183
|
+
wexample-filestate-git==0.0.57
|
|
184
|
+
# via wexample-wex-core
|
|
185
|
+
wexample-filestate-python==0.0.56
|
|
186
|
+
# via wexample-wex-addon-dev-python
|
|
187
|
+
wexample-helpers==0.0.85
|
|
188
|
+
# via
|
|
189
|
+
# wexample-api
|
|
190
|
+
# wexample-config
|
|
191
|
+
# wexample-event
|
|
192
|
+
# wexample-file
|
|
193
|
+
# wexample-helpers-git
|
|
194
|
+
# wexample-helpers-yaml
|
|
195
|
+
# wexample-prompt
|
|
196
|
+
wexample-helpers-git==0.0.93
|
|
197
|
+
# via
|
|
198
|
+
# wexample-filestate-git
|
|
199
|
+
# wexample-wex-core
|
|
200
|
+
wexample-helpers-yaml==0.0.110
|
|
201
|
+
# via
|
|
202
|
+
# wexample-app
|
|
203
|
+
# wexample-filestate
|
|
204
|
+
wexample-prompt==0.0.94
|
|
205
|
+
# via
|
|
206
|
+
# wexample-api
|
|
207
|
+
# wexample-filestate
|
|
208
|
+
wexample-wex-addon-app==0.0.53
|
|
209
|
+
# via
|
|
210
|
+
# app-manager (/home/weeger/Desktop/WIP/WEB/WEXAMPLE/PACKAGES/JAVASCRIPT/packages/js-pseudocode/.wex/python/app_manager/pyproject.toml)
|
|
211
|
+
# wexample-wex-addon-dev-python
|
|
212
|
+
wexample-wex-addon-dev-python==0.0.61
|
|
213
|
+
# via app-manager (/home/weeger/Desktop/WIP/WEB/WEXAMPLE/PACKAGES/JAVASCRIPT/packages/js-pseudocode/.wex/python/app_manager/pyproject.toml)
|
|
214
|
+
wexample-wex-addon-filestate==0.0.15
|
|
215
|
+
# via app-manager (/home/weeger/Desktop/WIP/WEB/WEXAMPLE/PACKAGES/JAVASCRIPT/packages/js-pseudocode/.wex/python/app_manager/pyproject.toml)
|
|
216
|
+
wexample-wex-core==6.0.65
|
|
217
|
+
# via
|
|
218
|
+
# app-manager (/home/weeger/Desktop/WIP/WEB/WEXAMPLE/PACKAGES/JAVASCRIPT/packages/js-pseudocode/.wex/python/app_manager/pyproject.toml)
|
|
219
|
+
# wexample-wex-addon-app
|
|
220
|
+
# wexample-wex-addon-dev-python
|
|
221
|
+
# wexample-wex-addon-filestate
|
|
222
|
+
xmltodict==1.0.2
|
|
223
|
+
# via wexample-filestate
|
package/README.md
ADDED
|
@@ -0,0 +1,135 @@
|
|
|
1
|
+
# js_app
|
|
2
|
+
|
|
3
|
+
Version: 0.0.3
|
|
4
|
+
|
|
5
|
+
## Table of Contents
|
|
6
|
+
|
|
7
|
+
- [Api Reference](#api-reference)
|
|
8
|
+
- [Code Quality](#code-quality)
|
|
9
|
+
- [Versioning](#versioning)
|
|
10
|
+
- [Changelog](#changelog)
|
|
11
|
+
- [Migration Notes](#migration-notes)
|
|
12
|
+
- [Security](#security)
|
|
13
|
+
- [Privacy](#privacy)
|
|
14
|
+
- [Support](#support)
|
|
15
|
+
- [Contribution Guidelines](#contribution-guidelines)
|
|
16
|
+
- [Maintainers](#maintainers)
|
|
17
|
+
- [License](#license)
|
|
18
|
+
- [Suite Integration](#suite-integration)
|
|
19
|
+
- [Compatibility Matrix](#compatibility-matrix)
|
|
20
|
+
- [Dependencies](#dependencies)
|
|
21
|
+
- [Suite Signature](#suite-signature)
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
## API Reference
|
|
25
|
+
|
|
26
|
+
Full API documentation is available in the source code docstrings.
|
|
27
|
+
|
|
28
|
+
Key modules and classes are documented with type hints for better IDE support.
|
|
29
|
+
|
|
30
|
+
## Code Quality & Typing
|
|
31
|
+
|
|
32
|
+
All the suite packages follow strict quality standards:
|
|
33
|
+
|
|
34
|
+
- **Type hints**: Full type coverage with mypy validation
|
|
35
|
+
- **Code formatting**: Enforced with black and isort
|
|
36
|
+
- **Linting**: Comprehensive checks with custom scripts and tools
|
|
37
|
+
- **Testing**: High test coverage requirements
|
|
38
|
+
|
|
39
|
+
These standards ensure reliability and maintainability across the suite.
|
|
40
|
+
|
|
41
|
+
## Versioning & Compatibility Policy
|
|
42
|
+
|
|
43
|
+
Wexample packages follow **Semantic Versioning** (SemVer):
|
|
44
|
+
|
|
45
|
+
- **MAJOR**: Breaking changes
|
|
46
|
+
- **MINOR**: New features, backward compatible
|
|
47
|
+
- **PATCH**: Bug fixes, backward compatible
|
|
48
|
+
|
|
49
|
+
We maintain backward compatibility within major versions and provide clear migration guides for breaking changes.
|
|
50
|
+
|
|
51
|
+
## Changelog
|
|
52
|
+
|
|
53
|
+
See [CHANGELOG.md](CHANGELOG.md) for detailed version history and release notes.
|
|
54
|
+
|
|
55
|
+
Major changes are documented with migration guides when applicable.
|
|
56
|
+
|
|
57
|
+
## Migration Notes
|
|
58
|
+
|
|
59
|
+
When upgrading between major versions, refer to the migration guides in the documentation.
|
|
60
|
+
|
|
61
|
+
Breaking changes are clearly documented with upgrade paths and examples.
|
|
62
|
+
|
|
63
|
+
## Security Policy
|
|
64
|
+
|
|
65
|
+
### Reporting Vulnerabilities
|
|
66
|
+
|
|
67
|
+
If you discover a security vulnerability, please email contact@wexample.com.
|
|
68
|
+
|
|
69
|
+
**Do not** open public issues for security vulnerabilities.
|
|
70
|
+
|
|
71
|
+
We take security seriously and will respond promptly to verified reports.
|
|
72
|
+
|
|
73
|
+
## Privacy & Telemetry
|
|
74
|
+
|
|
75
|
+
This package does **not** collect any telemetry or usage data.
|
|
76
|
+
|
|
77
|
+
Your privacy is respected — no data is transmitted to external services.
|
|
78
|
+
|
|
79
|
+
## Support Channels
|
|
80
|
+
|
|
81
|
+
- **GitHub Issues**: Bug reports and feature requests
|
|
82
|
+
- **GitHub Discussions**: Questions and community support
|
|
83
|
+
- **Documentation**: Comprehensive guides and API reference
|
|
84
|
+
- **Email**: contact@wexample.com for general inquiries
|
|
85
|
+
|
|
86
|
+
Community support is available through GitHub Discussions.
|
|
87
|
+
|
|
88
|
+
## Contribution Guidelines
|
|
89
|
+
|
|
90
|
+
We welcome contributions to the Wexample suite!
|
|
91
|
+
|
|
92
|
+
### How to Contribute
|
|
93
|
+
|
|
94
|
+
1. **Fork** the repository
|
|
95
|
+
2. **Create** a feature branch
|
|
96
|
+
3. **Make** your changes
|
|
97
|
+
4. **Test** thoroughly
|
|
98
|
+
5. **Submit** a pull request
|
|
99
|
+
|
|
100
|
+
## Maintainers & Authors
|
|
101
|
+
|
|
102
|
+
Maintained by the Wexample team and community contributors.
|
|
103
|
+
|
|
104
|
+
See [CONTRIBUTORS.md](CONTRIBUTORS.md) for the full list of contributors.
|
|
105
|
+
|
|
106
|
+
## License
|
|
107
|
+
|
|
108
|
+
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.
|
|
109
|
+
|
|
110
|
+
Free to use in both personal and commercial projects.
|
|
111
|
+
|
|
112
|
+
## Integration in the Suite
|
|
113
|
+
|
|
114
|
+
This package is part of the **Wexample Suite** — a collection of high-quality Python packages designed to work seamlessly together.
|
|
115
|
+
|
|
116
|
+
### Related Packages
|
|
117
|
+
|
|
118
|
+
The suite includes packages for configuration management, file handling, prompts, and more. Each package can be used independently or as part of the integrated suite.
|
|
119
|
+
|
|
120
|
+
Visit the [Wexample Suite documentation](https://docs.wexample.com) for the complete package ecosystem.
|
|
121
|
+
|
|
122
|
+
## Compatibility Matrix
|
|
123
|
+
|
|
124
|
+
This package is part of the Wexample suite and is compatible with other suite packages.
|
|
125
|
+
|
|
126
|
+
Refer to each package's documentation for specific version compatibility requirements.
|
|
127
|
+
|
|
128
|
+
# About us
|
|
129
|
+
|
|
130
|
+
[Wexample](https://wexample.com) stands as a cornerstone of the digital ecosystem — a collective of seasoned engineers, researchers, and creators driven by a relentless pursuit of technological excellence. More than a media platform, it has grown into a vibrant community where innovation meets craftsmanship, and where every line of code reflects a commitment to clarity, durability, and shared intelligence.
|
|
131
|
+
|
|
132
|
+
This packages suite embodies this spirit. Trusted by professionals and enthusiasts alike, it delivers a consistent, high-quality foundation for modern development — open, elegant, and battle-tested. Its reputation is built on years of collaboration, refinement, and rigorous attention to detail, making it a natural choice for those who demand both robustness and beauty in their tools.
|
|
133
|
+
|
|
134
|
+
Wexample cultivates a culture of mastery. Each package, each contribution carries the mark of a community that values precision, ethics, and innovation — a community proud to shape the future of digital craftsmanship.
|
|
135
|
+
|
package/package.json
ADDED
package/version.txt
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
0.0.3
|