Skip to content

Commit 813ddad

Browse files
committed
feat: init repo
0 parents  commit 813ddad

File tree

7 files changed

+109
-0
lines changed

7 files changed

+109
-0
lines changed

.editorconfig

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# This file is for unifying the coding style for different editors and IDEs
2+
# editorconfig.org
3+
4+
[*]
5+
charset = utf-8
6+
indent_style = tab
7+
end_of_line = lf
8+
insert_final_newline = true
9+
trim_trailing_whitespace = true

.gitignore

+37
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
2+
package-lock.json
3+
4+
# Log files
5+
npm-debug.log*
6+
yarn-debug.log*
7+
yarn-error.log*
8+
9+
# Editor directories and files
10+
.idea
11+
.vscode
12+
*.suo
13+
*.ntvs*
14+
*.njsproj
15+
*.sln
16+
*.sw?
17+
18+
# OS hidden files
19+
Thumbs.db
20+
ehthumbs.db
21+
[Dd]esktop.ini
22+
$RECYCLE.BIN/
23+
.DS_Store
24+
25+
# Other VCS directories
26+
.svn
27+
28+
# Dependencies
29+
node_modules/
30+
31+
# Temporary files
32+
*.tmp
33+
*.bak
34+
*.swp
35+
*.lnk
36+
*.zip
37+
*.gz

LICENSE.txt

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2022 cssmagic and other contributors
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.

README.md

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# Kup
2+
3+
> A CLI tool to post Markdown files to GitHub as issues.
4+
5+
## Installation
6+
7+
```sh
8+
npm i -g kup-cli
9+
```

bin/.gitkeep

Whitespace-only changes.

index.js

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
// todo

package.json

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
{
2+
"name": "kup-cli",
3+
"version": "0.0.0-alpha.1",
4+
"description": "A CLI tool to post Markdown files to GitHub as issues.",
5+
"main": "index.js",
6+
"scripts": {
7+
"test": "echo \"Error: no test specified\" && exit 1"
8+
},
9+
"repository": {
10+
"type": "git",
11+
"url": "git+https://github.com/cssmagic/kup.git"
12+
},
13+
"keywords": [
14+
"cli",
15+
"markdown",
16+
"github",
17+
"issue"
18+
],
19+
"author": "cssmagic <cssmagic.cn@gmail.com>",
20+
"license": "MIT",
21+
"engines": {
22+
"node": ">=12"
23+
},
24+
"dependencies": {},
25+
"files": [
26+
"*.js",
27+
"bin/"
28+
],
29+
"publishConfig": {
30+
"registry": "https://registry.npmjs.org/"
31+
}
32+
}

0 commit comments

Comments
 (0)