chore(packages): add licenses
This commit is contained in:
parent
5a6ed3c0e4
commit
9f59da48b1
8 changed files with 86 additions and 18 deletions
22
package-lock.json
generated
22
package-lock.json
generated
|
@ -3960,13 +3960,13 @@
|
|||
},
|
||||
"packages/config": {
|
||||
"name": "@mcflyjs/config",
|
||||
"version": "0.0.3",
|
||||
"version": "0.0.4",
|
||||
"license": "MIT",
|
||||
"devDependencies": {}
|
||||
},
|
||||
"packages/core": {
|
||||
"name": "@mcflyjs/core",
|
||||
"version": "0.2.4",
|
||||
"version": "0.2.5",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"esprima": "^4.0.1",
|
||||
|
@ -3975,7 +3975,7 @@
|
|||
}
|
||||
},
|
||||
"packages/create-mcfly": {
|
||||
"version": "0.2.1",
|
||||
"version": "0.2.2",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"consola": "^3.2.3",
|
||||
|
@ -4007,20 +4007,18 @@
|
|||
}
|
||||
},
|
||||
"templates/basic/node_modules/@mcflyjs/config": {
|
||||
"version": "0.0.2",
|
||||
"resolved": "https://registry.npmjs.org/@mcflyjs/config/-/config-0.0.2.tgz",
|
||||
"integrity": "sha512-OcufnHOebm8PW55sb0tMJV5y0pMnHiJeVZ4B+5Cg3Wjiz1cCk46qsGuGVLoqNTluaBkDNnJL8k6pdswYOp+mTw=="
|
||||
"version": "0.0.3",
|
||||
"resolved": "https://registry.npmjs.org/@mcflyjs/config/-/config-0.0.3.tgz",
|
||||
"integrity": "sha512-wmvny04SZFJM0IpfIK16Zay8yrl5OBq6YgZWdr0tX8sQpXI13sGYvXVhZ7XRXqv6BhhaCxc/qkLvB5Rb4Z0BOA=="
|
||||
},
|
||||
"templates/basic/node_modules/@mcflyjs/core": {
|
||||
"version": "0.2.3",
|
||||
"resolved": "https://registry.npmjs.org/@mcflyjs/core/-/core-0.2.3.tgz",
|
||||
"integrity": "sha512-mqja1BLx8HntcX1C4j6Jl6EaZazu5DXtq+ryW9GjAYD0155D1LWGhkCH3u8C0CxEgXXyU/SDyTby9Ko319w3+A==",
|
||||
"version": "0.2.4",
|
||||
"resolved": "https://registry.npmjs.org/@mcflyjs/core/-/core-0.2.4.tgz",
|
||||
"integrity": "sha512-AhtRnPkFtdNQWcdhYemZu9ZXZT+t5TrTfqpDWkv2LaYq4p6xrqu+3pzQ0WWrpesZQV3FPW6XGeiyJd1O2q09YA==",
|
||||
"dependencies": {
|
||||
"esprima": "^4.0.1",
|
||||
"h3": "^1.8.2",
|
||||
"nitropack": "^2.7.0",
|
||||
"ultrahtml": "^1.5.2",
|
||||
"unstorage": "^1.9.0"
|
||||
"ultrahtml": "^1.5.2"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -5,7 +5,8 @@
|
|||
"build": "npm run build -w @mcflyjs/landing-page",
|
||||
"build:preview": "npm run build:preview -w @mcflyjs/landing-page",
|
||||
"template:basic": "npm run dev -w @templates/basic",
|
||||
"create": "node ./packages/create-mcfly"
|
||||
"create": "node ./packages/create-mcfly",
|
||||
"patch:all": "npm version patch -w @mcflyjs/core && npm version patch -w @mcflyjs/config && npm version patch -w create-mcfly"
|
||||
},
|
||||
"workspaces": [
|
||||
"packages/config",
|
||||
|
|
21
packages/config/LICENSE
Normal file
21
packages/config/LICENSE
Normal file
|
@ -0,0 +1,21 @@
|
|||
MIT License
|
||||
|
||||
Copyright (c) 2021 Ayo Ayco
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE.
|
|
@ -1,9 +1,13 @@
|
|||
{
|
||||
"name": "@mcflyjs/config",
|
||||
"version": "0.0.3",
|
||||
"version": "0.0.4",
|
||||
"description": "Nitro configuration for McFly apps",
|
||||
"main": "index.ts",
|
||||
"devDependencies": {},
|
||||
"files": [
|
||||
"index,js",
|
||||
"LICENSE"
|
||||
],
|
||||
"scripts": {
|
||||
"test": "echo \"Error: no test specified\" && exit 1"
|
||||
},
|
||||
|
|
21
packages/core/LICENSE
Normal file
21
packages/core/LICENSE
Normal file
|
@ -0,0 +1,21 @@
|
|||
MIT License
|
||||
|
||||
Copyright (c) 2021 Ayo Ayco
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE.
|
|
@ -1,11 +1,12 @@
|
|||
{
|
||||
"name": "@mcflyjs/core",
|
||||
"version": "0.2.4",
|
||||
"version": "0.2.5",
|
||||
"description": "McFly core package",
|
||||
"main": "event-handler.mjs",
|
||||
"files": [
|
||||
"event-handler.mjs",
|
||||
"define-config.mjs"
|
||||
"define-config.mjs",
|
||||
"LICENSE"
|
||||
],
|
||||
"scripts": {
|
||||
"test": "echo \"Error: no test specified\" && exit 1"
|
||||
|
|
21
packages/create-mcfly/LICENSE
Normal file
21
packages/create-mcfly/LICENSE
Normal file
|
@ -0,0 +1,21 @@
|
|||
MIT License
|
||||
|
||||
Copyright (c) 2021 Ayo Ayco
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE.
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "create-mcfly",
|
||||
"version": "0.2.1",
|
||||
"version": "0.2.2",
|
||||
"bin": {
|
||||
"create-mcfly": "./index.js"
|
||||
},
|
||||
|
@ -10,7 +10,8 @@
|
|||
".": "./index.js"
|
||||
},
|
||||
"files": [
|
||||
"index.js"
|
||||
"index.js",
|
||||
"LICENSE"
|
||||
],
|
||||
"scripts": {
|
||||
"test": "echo \"Error: no test specified\" && exit 1"
|
||||
|
|
Loading…
Reference in a new issue