@effindomv2/fui-as 0.1.0 → 0.1.1
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/COMMERCIAL.md +7 -0
- package/LICENSE.md +5 -4
- package/LICENSES/AGPL-3.0-only.md +8 -0
- package/package.json +8 -5
package/COMMERCIAL.md
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
# FUI-AS Commercial License
|
|
2
|
+
|
|
3
|
+
`@effindomv2/fui-as` is available under a separate commercial license if you
|
|
4
|
+
want to use it without the obligations of AGPL-3.0-only.
|
|
5
|
+
|
|
6
|
+
To discuss commercial licensing, contact the repository maintainer through the
|
|
7
|
+
project's public contact channel.
|
package/LICENSE.md
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
|
-
`@effindomv2/fui-as` is licensed under
|
|
2
|
-
|
|
1
|
+
`@effindomv2/fui-as` is licensed under the GNU Affero General Public License
|
|
2
|
+
v3.0 (AGPL-3.0-only) or, at your option, the commercial license terms in
|
|
3
|
+
`COMMERCIAL.md`.
|
|
3
4
|
|
|
4
5
|
See:
|
|
5
6
|
|
|
6
|
-
-
|
|
7
|
-
-
|
|
7
|
+
- `LICENSES/AGPL-3.0-only.md`
|
|
8
|
+
- `COMMERCIAL.md`
|
package/package.json
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@effindomv2/fui-as",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"private": false,
|
|
5
|
-
"license": "
|
|
6
|
-
"description": "EffinDom v2 AssemblyScript SDK and browser harness",
|
|
5
|
+
"license": "AGPL-3.0-only OR LicenseRef-EffinDom-Commercial",
|
|
6
|
+
"description": "EffinDom v2 AssemblyScript frontend framework SDK and browser harness",
|
|
7
7
|
"type": "module",
|
|
8
8
|
"publishConfig": {
|
|
9
9
|
"access": "public"
|
|
@@ -61,7 +61,10 @@
|
|
|
61
61
|
"files": [
|
|
62
62
|
"src",
|
|
63
63
|
"browser/src",
|
|
64
|
-
"scripts"
|
|
64
|
+
"scripts",
|
|
65
|
+
"LICENSE.md",
|
|
66
|
+
"COMMERCIAL.md",
|
|
67
|
+
"LICENSES"
|
|
65
68
|
],
|
|
66
69
|
"scripts": {
|
|
67
70
|
"build": "bash scripts/build.sh",
|
|
@@ -73,10 +76,10 @@
|
|
|
73
76
|
"typecheck": "tsc -p tsconfig.json --noEmit"
|
|
74
77
|
},
|
|
75
78
|
"dependencies": {
|
|
79
|
+
"@assemblyscript/loader": "^0.28.17",
|
|
76
80
|
"@effindomv2/runtime": "0.1.0"
|
|
77
81
|
},
|
|
78
82
|
"devDependencies": {
|
|
79
|
-
"@assemblyscript/loader": "^0.28.17",
|
|
80
83
|
"@as-pect/assembly": "8.1.0",
|
|
81
84
|
"@as-pect/cli": "8.1.0",
|
|
82
85
|
"@as-pect/core": "8.1.0",
|