Skip to content
This repository was archived by the owner on Jun 10, 2024. It is now read-only.

Commit f5a394a

Browse files
committed
Initial commit
0 parents  commit f5a394a

File tree

5 files changed

+209
-0
lines changed

5 files changed

+209
-0
lines changed

.github/FUNDING.yml

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
github: bcakmakoglu

.gitignore

+100
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,100 @@
1+
# Created by .ignore support plugin (hsz.mobi)
2+
### Node template
3+
# Logs
4+
/logs
5+
*.log
6+
npm-debug.log*
7+
yarn-debug.log*
8+
yarn-error.log*
9+
10+
# Runtime data
11+
pids
12+
*.pid
13+
*.seed
14+
*.pid.lock
15+
16+
# Directory for instrumented libs generated by jscoverage/JSCover
17+
lib-cov
18+
19+
# Coverage directory used by tools like istanbul
20+
coverage
21+
22+
# nyc test coverage
23+
.nyc_output
24+
25+
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
26+
.grunt
27+
28+
# Bower dependency directory (https://bower.io/)
29+
bower_components
30+
31+
# node-waf configuration
32+
.lock-wscript
33+
34+
# Compiled binary addons (https://nodejs.org/api/addons.html)
35+
build/Release
36+
37+
# Dependency directories
38+
node_modules/
39+
jspm_packages/
40+
41+
# TypeScript v1 declaration files
42+
typings/
43+
44+
# Optional npm cache directory
45+
.npm
46+
47+
# Optional eslint cache
48+
.eslintcache
49+
50+
# Optional REPL history
51+
.node_repl_history
52+
53+
# Output of 'npm pack'
54+
*.tgz
55+
56+
# Yarn Integrity file
57+
.yarn-integrity
58+
59+
# dotenv environment variables file
60+
.env
61+
62+
# parcel-bundler cache (https://parceljs.org/)
63+
.cache
64+
65+
# next.js build output
66+
.next
67+
68+
# nuxt.js build output
69+
.nuxt
70+
71+
# Nuxt generate
72+
dist
73+
74+
# vuepress build output
75+
.vuepress/dist
76+
77+
# Serverless directories
78+
.serverless
79+
.webpack
80+
81+
# IDE / Editor
82+
.idea
83+
84+
# Service worker
85+
sw.*
86+
87+
# macOS
88+
.DS_Store
89+
90+
# Vim swap files
91+
*.swp
92+
93+
# Db-Data
94+
hasura/db_data/
95+
96+
# Codegen types
97+
types/types.ts
98+
99+
build
100+
cypress/screenshots

LICENSE

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2021 Braks
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

+50
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
# Temple of Time 🛕
2+
3+
![alt text](https://64.media.tumblr.com/69de98405fbd0ff131c7e34e71e517f4/tumblr_nv4euoaSRu1ufzu8po1_500.gifv)
4+
5+
This is a template repository containing some stuff to save time when creating a new repo.
6+
7+
![top-language](https://img.shields.io/github/languages/top/bcakmakoglu/temple-of-time)
8+
[![dependencies Status](https://status.david-dm.org/gh/bcakmakoglu/temple-of-time.svg)](https://david-dm.org/bcakmakoglu/temple-of-time)
9+
[![devDependencies Status](https://status.david-dm.org/gh/bcakmakoglu/temple-of-time.svg?type=dev)](https://david-dm.org/bcakmakoglu/temple-of-time?type=dev)
10+
![vulnerabilities](https://img.shields.io/snyk/vulnerabilities/github/bcakmakoglu/temple-of-time)
11+
![GitHub code size in bytes](https://img.shields.io/github/languages/code-size/bcakmakoglu/temple-of-time)
12+
![GitHub last commit](https://img.shields.io/github/last-commit/bcakmakoglu/temple-of-time)
13+
14+
**Awesome Repo 🍟**
15+
16+
17+
## 🛠 Setup
18+
Some info on setup here.
19+
20+
```bash
21+
# install
22+
$ yarn add @braks/repo
23+
24+
# or
25+
$ npm i --save @braks/repo
26+
```
27+
28+
## 🧪 Development
29+
Info on development.
30+
31+
Example for starting/building app:
32+
```bash
33+
# start (dev)
34+
$ yarn dev
35+
36+
# build app
37+
$ yarn build
38+
39+
# serve app from build
40+
$ yarn serve
41+
42+
# build dist
43+
$ yarn build:dist
44+
```
45+
46+
## 🕵🏻‍♂️ Tests
47+
Some info about testing.
48+
49+
# Sponsors 💝
50+
Possible sponsor list

package.json

+37
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
{
2+
"name": "temple-of-time",
3+
"version": "0.0.1",
4+
"private": false,
5+
"repository": {
6+
"type": "git",
7+
"url": "https://github.com/bcakmakoglu/temple-of-time"
8+
},
9+
"keywords": [
10+
"braks"
11+
],
12+
"license": "MIT",
13+
"author": "Burak Cakmakoglu<https://github.com/bcakmakoglu>",
14+
"homepage": "https://github.com/bcakmakoglu/temple-of-time#readme",
15+
"exports": {
16+
".": {
17+
"import": "./dist/temple-of-time.esm.js",
18+
"require": "./dist/temple-of-time.cjs.js"
19+
},
20+
"./*": "./*"
21+
},
22+
"main": "./dist/temple-of-time.cjs.js",
23+
"types": "./dist/temple-of-time.d.ts",
24+
"module": "./dist/temple-of-time.esm.js",
25+
"unpkg": "./dist/temple-of-time.iife.min.js",
26+
"jsdelivr": "./dist/temple-of-time.iife.min.js",
27+
"files": [
28+
"dist"
29+
],
30+
"scripts": {
31+
"test": "exit 0"
32+
},
33+
"publishConfig": {
34+
"access": "public",
35+
"registry": "http://registry.npmjs.org/"
36+
}
37+
}

0 commit comments

Comments
 (0)