Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
feat(nameserivce-examples): setup examples module
  • Loading branch information
KovacZan committed Aug 15, 2021
commit ff17f20364f5e9fd6807cf99608abd7b24610409
3 changes: 3 additions & 0 deletions packages/nameservice-examples/.prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
.coverage
dist
docs
7 changes: 7 additions & 0 deletions packages/nameservice-examples/.prettierrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"printWidth": 120,
"singleQuote": false,
"tabWidth": 4,
"trailingComma": "all",
"useTabs": false
}
22 changes: 22 additions & 0 deletions packages/nameservice-examples/LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# License
===============

This work is licensed under [Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License](https://creativecommons.org/licenses/by-nc-sa/4.0/), under the following terms:

Attribution
---------------
You must give appropriate credit, provide a link to the license, and indicate if changes were made. You may do so in any reasonable manner, but not in any way that suggests the licensor endorses you or your use.

NonCommercial
---------------
You may not use the material for commercial purposes. For commercial purposes please reach out to info@protokol.com.

ShareAlike
---------------
If you remix, transform, or build upon the material, you must distribute your contributions under the same license as the original.

Legal code
---------------
Read the rest of the obligatory [license legal code](https://creativecommons.org/licenses/by-nc-sa/4.0/legalcode).

Copyright (c) Protokol.com 2021
27 changes: 27 additions & 0 deletions packages/nameservice-examples/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
[![License: CC BY-NC-SA 4.0](https://img.shields.io/badge/License-CC%20BY--NC--SA%204.0-lightgrey.svg)](https://creativecommons.org/licenses/by-nc-sa/4.0/)

# NAMESERVICE-EXAMPLES

# License

[![License: CC BY-NC-SA 4.0](https://img.shields.io/badge/License-CC%20BY--NC--SA%204.0-lightgrey.svg)](https://creativecommons.org/licenses/by-nc-sa/4.0/)

This work is licensed under [Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License](https://creativecommons.org/licenses/by-nc-sa/4.0/), under the following terms:

#### Attribution

You must give appropriate credit, provide a link to the license, and indicate if changes were made. You may do so in any reasonable manner, but not in any way that suggests the licensor endorses you or your use.

#### NonCommercial

You may not use the material for commercial purposes. For commercial purposes please reach out to info@protokol.com.

#### ShareAlike

If you remix, transform, or build upon the material, you must distribute your contributions under the same license as the original.

#### Legal code

Read the rest of the obligatory [license legal code](https://creativecommons.org/licenses/by-nc-sa/4.0/legalcode).

Copyright (c) Protokol.com 2021
52 changes: 52 additions & 0 deletions packages/nameservice-examples/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
{
"name": "@protokol/nameservice-examples",
"private": true,
"version": "1.0.0-beta.2",
"description": "Examples for nameservice transactions",
"license": "CC-BY-NC-SA-4.0",
"bugs": {
"url": "https://github.com/protokol/nameservice/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/protokol/nameservice.git"
},
"keywords": [
"protokol",
"ark",
"core",
"sdk",
"nameservice",
"blockchain",
"examples"
],
"contributors": [
"Žan Kovač <zan@protokol.com",
"Amadej Pevec <amadej@protokol.com>",
"Kristjan Košič <kristjan@protokol.com>"
],
"files": [
"dist"
],
"main": "dist/index",
"types": "dist/index",
"scripts": {
"build": "yarn clean && tsc",
"build:watch": "yarn build -w",
"build:docs": "typedoc --out docs src",
"clean": "rimraf .coverage dist tmp",
"test": "jest",
},
"dependencies": {
"@arkecosystem/crypto": "^3.0.0-next",
},
"devDependencies": {
"@arkecosystem/core-test-framework": "^3.0.0-next",
"@sindresorhus/tsconfig": "~1.0.0",
"@types/node": "^14.14.31",
"@types/rimraf": "^3.0.0",
"rimraf": "^3.0.2",
"typedoc": "~0.21.0",
"typescript": "~4.3.2"
}
}
Empty file.
7 changes: 7 additions & 0 deletions packages/nameservice-examples/tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"extends": "../../tsconfig.json",
"compilerOptions": {
"outDir": "dist"
},
"include": ["src/**/**.ts"]
}