@m2c2kit/addons 0.3.7 → 0.3.8
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/LICENSE +21 -0
- package/README.md +1 -1
- package/dist/index.js +2 -0
- package/package.json +19 -6
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2023 Scott T. Yabiku
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
CHANGED
|
@@ -19,4 +19,4 @@ This package contains additions to m2c2kit core functionally, such as buttons, g
|
|
|
19
19
|
- [Website](https://m2c2-project.github.io/m2c2kit/)
|
|
20
20
|
- [Live Examples](https://m2c2-project.github.io/m2c2kit/docs/category/examples)
|
|
21
21
|
- [Getting Started](https://m2c2-project.github.io/m2c2kit/docs/getting-started)
|
|
22
|
-
- [Interactive
|
|
22
|
+
- [Interactive Tutorials](https://m2c2-project.github.io/m2c2kit/docs/category/tutorials)
|
package/dist/index.js
CHANGED
|
@@ -1311,5 +1311,7 @@ class Instructions extends Story {
|
|
|
1311
1311
|
}
|
|
1312
1312
|
}
|
|
1313
1313
|
|
|
1314
|
+
console.log("\u26AA @m2c2kit/addons version 0.3.8 (25099410)");
|
|
1315
|
+
|
|
1314
1316
|
export { Button, Dialog, DialogResult, Grid, Instructions, VirtualKeyboard };
|
|
1315
1317
|
//# sourceMappingURL=index.js.map
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@m2c2kit/addons",
|
|
3
|
-
"version": "0.3.
|
|
4
|
-
"description": "Additions to m2c2kit core
|
|
3
|
+
"version": "0.3.8",
|
|
4
|
+
"description": "Additions to m2c2kit core functionality, such as button, grid, and instructions",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.js",
|
|
7
7
|
"exports": {
|
|
@@ -15,20 +15,33 @@
|
|
|
15
15
|
],
|
|
16
16
|
"scripts": {
|
|
17
17
|
"build": "npm run clean && tsc --build && rollup -c",
|
|
18
|
-
"clean": "rimraf build build-nobundler
|
|
18
|
+
"clean": "rimraf build build-nobundler dist .rollup.cache tsconfig.tsbuildinfo",
|
|
19
19
|
"test": "echo \"Error: no test specified\" && exit 1"
|
|
20
20
|
},
|
|
21
21
|
"license": "MIT",
|
|
22
|
+
"author": {
|
|
23
|
+
"name": "Scott T. Yabiku",
|
|
24
|
+
"email": "syabiku@gmail.com"
|
|
25
|
+
},
|
|
26
|
+
"repository": {
|
|
27
|
+
"type": "git",
|
|
28
|
+
"url": "https://github.com/m2c2-project/m2c2kit.git",
|
|
29
|
+
"directory": "packages/addons"
|
|
30
|
+
},
|
|
31
|
+
"homepage": "https://m2c2-project.github.io/m2c2kit",
|
|
22
32
|
"dependencies": {
|
|
23
33
|
"@m2c2kit/core": "^0.3.6"
|
|
24
34
|
},
|
|
25
35
|
"devDependencies": {
|
|
26
|
-
"@rollup/plugin-
|
|
36
|
+
"@rollup/plugin-replace": "5.0.2",
|
|
27
37
|
"rimraf": "5.0.1",
|
|
28
|
-
"rollup": "3.25.
|
|
38
|
+
"rollup": "3.25.3",
|
|
29
39
|
"rollup-plugin-copy": "3.4.0",
|
|
30
40
|
"rollup-plugin-dts": "5.3.0",
|
|
31
41
|
"rollup-plugin-esbuild": "5.0.0",
|
|
32
|
-
"typescript": "5.1.
|
|
42
|
+
"typescript": "5.1.6"
|
|
43
|
+
},
|
|
44
|
+
"engines": {
|
|
45
|
+
"node": ">=18"
|
|
33
46
|
}
|
|
34
47
|
}
|