Skip to content

Commit

Permalink
minimal
Browse files Browse the repository at this point in the history
  • Loading branch information
sinolopes committed Jun 3, 2022
1 parent 9a1dcd1 commit 8cc4814
Show file tree
Hide file tree
Showing 3 changed files with 173 additions and 0 deletions.
127 changes: 127 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,127 @@
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
lerna-debug.log*
.pnpm-debug.log*

# Diagnostic reports (https://nodejs.org/api/report.html)
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json

# Runtime data
pids
*.pid
*.seed
*.pid.lock

# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov

# Coverage directory used by tools like istanbul
coverage
*.lcov

# nyc test coverage
.nyc_output

# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
.grunt

# Bower dependency directory (https://bower.io/)
bower_components

# node-waf configuration
.lock-wscript

# Compiled binary addons (https://nodejs.org/api/addons.html)
build/Release

# Dependency directories
node_modules/
jspm_packages/

# Snowpack dependency directory (https://snowpack.dev/)
web_modules/

# TypeScript cache
*.tsbuildinfo

# Optional npm cache directory
.npm

# Optional eslint cache
.eslintcache

# Optional stylelint cache
.stylelintcache

# Microbundle cache
.rpt2_cache/
.rts2_cache_cjs/
.rts2_cache_es/
.rts2_cache_umd/

# Optional REPL history
.node_repl_history

# Output of 'npm pack'
*.tgz

# Yarn Integrity file
.yarn-integrity

# dotenv environment variable files
.env
.env.development.local
.env.test.local
.env.production.local
.env.local

# parcel-bundler cache (https://parceljs.org/)
.cache
.parcel-cache

# Next.js build output
.next
out

# Nuxt.js build / generate output
.nuxt
dist

# Gatsby files
.cache/
# Comment in the public line in if your project uses Gatsby and not Next.js
# https://nextjs.org/blog/next-9-1#public-directory-support
# public

# vuepress build output
.vuepress/dist

# vuepress v2.x temp and cache directory
.temp
.cache

# Serverless directories
.serverless/

# FuseBox cache
.fusebox/

# DynamoDB Local files
.dynamodb/

# TernJS port file
.tern-port

# Stores VSCode versions used for testing VSCode extensions
.vscode-test

# yarn v2
.yarn/cache
.yarn/unplugged
.yarn/build-state.yml
.yarn/install-state.gz
.pnp.*
45 changes: 45 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
SINODEVI LICENSE AGREEMENT
Version 1.0, 04 June 2022
Copyright (C) 2022 SINODEVI. <https://sinodevi.com/>

PLEASE READ THE FOLLOWING TERMS AND CONDITIONS OF THIS SOFTWARE LICENSE AGREEMENT ("LICENSE") CAREFULLY BEFORE INSTALLING OR USING THE SOFTWARE. BY INSTALLING OR USING THE SOFTWARE, YOU AGREE TO BE BOUND BY THE TERMS AND CONDITIONS OF THIS LICENSE. IF YOU DO NOT AGREE TO THESE TERMS AND CONDITIONS, PLEASE DO NOT INSTALL OR USE THE SOFTWARE.

1. Definitions

1.1. “Software” refers to the computer program provided by SINODEVI Company, including any updates, modifications, or subsequent versions, as well as any associated documentation.

1.2. “User” refers to the individual or entity who installs or uses the Software and is bound by the terms and conditions of this License.

1.3. “Documentation” refers to the manuals, user guides, or other materials provided by SINODEVI Company that describe the operation and use of the Software.

1.4. "SINODEVI Company" refers to the entity that owns the intellectual property rights in the Software and grants this License.

2. Grant of License

2.1. Limited License: Subject to compliance with the terms and conditions of this License, SINODEVI Company grants the User a non-exclusive, non-transferable license to use the Software "typescript-library-template" (hereinafter referred to as the Software) in accordance with its Documentation.

2.2. Restrictions: The User may not copy, modify, distribute, assign, sell, rent, license, reverse engineer, decompile, or disassemble the Software, in whole or in part, without the express written permission of SINODEVI Company.

2.3. Ownership: SINODEVI Company retains all intellectual property rights related to the Software. This License does not grant the User any ownership rights to the Software.

3. Limitation of Liability

3.1. To the maximum extent permitted by applicable law, SINODEVI Company disclaims all liability for any direct, indirect, special, consequential, or punitive damages arising out of or in connection with the use or inability to use the Software, even if SINODEVI Company has been advised of the possibility of such damages.

4. Technical support

4.1. SINODEVI Company will provide limited technical support for the Software in accordance with the conditions specified in the Software documentation. However, SINODEVI Company does not guarantee that technical support will solve all problems or answer all questions of the user.

5. Confidentiality

5.1. The User agrees to maintain the confidentiality of the Software and not to disclose or distribute any source code or associated documentation without prior written permission from SINODEVI Company.

6. Term and Termination

6.1. This License shall become effective upon the date of Software installation and shall remain in effect until terminated. SINODEVI Company reserves the right to terminate this License at any time for a violation of the terms and conditions. Upon termination, the User must cease using the Software and destroy all copies in their possession.

7. Governing Law and Jurisdiction

7.1. This License is governed by French law, and any dispute arising out of this License shall be subject to the exclusive jurisdiction of the courts of Paris, France.

By installing or using the Software, you confirm that you have read, understood, and agreed to the terms and conditions of this License.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# typescript-library-template

0 comments on commit 8cc4814

Please sign in to comment.