docs: add MIT license

This commit is contained in:
kunish 2023-08-28 00:13:00 +08:00
parent 2524724caa
commit 4aeaa2c545
No known key found for this signature in database
GPG Key ID: 647A12B4F782C430
8 changed files with 3360 additions and 419 deletions

2
.commitlintrc.yml Normal file
View File

@ -0,0 +1,2 @@
extends:
- '@commitlint/config-conventional'

4
.husky/commit-msg Executable file
View File

@ -0,0 +1,4 @@
#!/usr/bin/env sh
. "$(dirname -- "$0")/_/husky.sh"
pnpm commitlint -e

4
.husky/pre-commit Executable file
View File

@ -0,0 +1,4 @@
#!/usr/bin/env sh
. "$(dirname -- "$0")/_/husky.sh"
pnpm lint-staged

2
.lintstagedrc.yml Normal file
View File

@ -0,0 +1,2 @@
'package.json': 'sort-package-json'
'*.{js,jsx,ts,tsx,md,html,css,json,yml,yaml}': 'prettier --write'

21
LICENSE Normal file
View File

@ -0,0 +1,21 @@
MIT License Copyright (c) 2023 MetaCubeX
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
(including the next paragraph) 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.

View File

@ -8,7 +8,7 @@
/>
<meta name="theme-color" content="#000000" />
<link rel="shortcut icon" type="image/svg" href="/src/assets/favicon.svg" />
<title>Solid App</title>
<title>metacubexd</title>
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>

View File

@ -7,9 +7,11 @@
"scripts": {
"build": "vite build",
"dev": "vite",
"prepare": "husky install",
"serve": "vite preview"
},
"dependencies": {
"@commitlint/config-conventional": "^17.7.0",
"@felte/solid": "^1.2.10",
"@felte/validator-zod": "^1.0.16",
"@solid-primitives/event-listener": "^2.2.14",
@ -25,14 +27,18 @@
"apexcharts": "^3.42.0",
"autoprefixer": "^10.4.15",
"byte-size": "^8.1.1",
"commitlint": "^17.7.1",
"daisyui": "^3.6.3",
"husky": "^8.0.3",
"is-ip": "^5.0.1",
"ky": "^0.33.3",
"lint-staged": "^14.0.1",
"prettier": "^3.0.2",
"prettier-plugin-tailwindcss": "^0.5.3",
"solid-apexcharts": "^0.3.2",
"solid-devtools": "^0.27.7",
"solid-js": "^1.7.11",
"sort-package-json": "^2.5.1",
"tailwind-merge": "^1.14.0",
"tailwindcss": "^3.3.3",
"typescript": "^5.2.2",

File diff suppressed because it is too large Load Diff