feat(*): initial commit

このコミットが含まれているのは:
sinkaroid 2023-04-18 11:05:16 +07:00
コミット 7dda3cb48b
この署名に対応する既知のキーがデータベースに存在しません
GPGキーID: ABD69470B2390135
6個のファイルの変更109行の追加0行の削除

1
.github/FUNDING.yml vendored ノーマルファイル
ファイルの表示

@ -0,0 +1 @@
github: sinkaroid

25
.github/ISSUE_TEMPLATE/bug_report.md vendored ノーマルファイル
ファイルの表示

@ -0,0 +1,25 @@
---
name: Bug report
about: Create a report to help us improve
title: bug
labels: ''
assignees: ''
---
**Describe the bug**
A clear and concise description of what the bug is.
**To Reproduce**
Steps to reproduce the behavior:
**Expected behavior**
A clear and concise description of what you expected to happen.
**Desktop (please complete the following information):**
- OS: [e.g. iOS]
- Node version [node -v]
- Typescript version [tsc -v]
**Additional context**
Add any other context about the problem here.

23
.github/ISSUE_TEMPLATE/feature_request.md vendored ノーマルファイル
ファイルの表示

@ -0,0 +1,23 @@
---
name: Feature request
about: Suggest an idea for this project
title: ''
labels: ''
assignees: ''
---
**Describe new features you want**
A clear and concise description of what new features you want.
**Describe the solution you'd like**
A clear and concise description of what you want to happen.
**Describe alternatives you've considered**
A clear and concise description of any alternative solutions or features you've considered.
**Additional context**
Add any other context or screenshots about the feature request here.
**A Gif to describe how you feel when you made this request**
Add a gif here to express how you feel when you made this request.

12
.gitignore vendored ノーマルファイル
ファイルの表示

@ -0,0 +1,12 @@
/node_modules
yarn.lock
package-lock.json
/build
/playground
/template
/docs
p.ts
.env
.idea
CHANGELOG.md
theme.zip

21
LICENSE ノーマルファイル
ファイルの表示

@ -0,0 +1,21 @@
MIT License
Copyright (c) 2022 sinkaroid.
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.

27
tsconfig.json ノーマルファイル
ファイルの表示

@ -0,0 +1,27 @@
{
"$schema": "http://json.schemastore.org/tsconfig",
"compilerOptions": {
"outDir": "./build",
"allowJs": true,
"target": "ESNext",
"baseUrl": "src",
"resolveJsonModule": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"moduleResolution": "node",
"module": "commonjs",
"paths": {},
"typeRoots": ["./node_modules/@types"],
"inlineSourceMap": true,
"downlevelIteration": true,
"newLine": "lf",
"strict": true,
"strictBindCallApply": true,
"strictPropertyInitialization": false,
"declaration": true
},
"include": [
"src/**/*"
],
"exclude": ["node_modules", "build", "out", "tmp", "logs", "test"]
}