diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml index f17d9b3..0655e69 100644 --- a/.github/ISSUE_TEMPLATE/config.yml +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -1,5 +1,5 @@ blank_issues_enabled: false questions: - name: ❓ Questions / Discussions - url: https://github.com/TypedProject/ts-gphoto2-driver/discussions + url: https://github.com/tsedio/ts-gphoto2-driver/discussions about: You want to ask a question or discuss with other community members diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index ba6ba2f..85cb0b8 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -42,7 +42,7 @@ $ git clone https://github.com/YOUR_USERNAME/ts-gphoto2-driver.git Or if you have access to this repository: ```bash - $ git checkout https://github.com/TypedProject/ts-gphoto2-driver.git + $ git checkout https://github.com/tsedio/ts-gphoto2-driver.git ``` Install npm dependencies diff --git a/README.md b/README.md index cf93370..e53d7a8 100644 --- a/README.md +++ b/README.md @@ -1,13 +1,13 @@ # ts-gphoto2-driver -[![Build & Release](https://github.com/TypedProject/ts-gphoto2-driver/actions/workflows/build.yml/badge.svg)](https://github.com/TypedProject/ts-gphoto2-driver/actions/workflows/build.yml) -[![Coverage Status](https://coveralls.io/repos/github/TypedProject/ts-gphoto2-driver/badge.svg?branch=production)](https://coveralls.io/github/TypedProject/ts-gphoto2-driver?branch=production) +[![Build & Release](https://github.com/tsedio/ts-gphoto2-driver/actions/workflows/build.yml/badge.svg)](https://github.com/tsedio/ts-gphoto2-driver/actions/workflows/build.yml) +[![Coverage Status](https://coveralls.io/repos/github/tsedio/ts-gphoto2-driver/badge.svg?branch=production)](https://coveralls.io/github/tsedio/ts-gphoto2-driver?branch=production) ![npm](https://img.shields.io/npm/dm/%40tsed%2Fgphoto2-driver.svg) [![npm version](https://badge.fury.io/js/%40tsed%2Fgphoto2-driver.svg)](https://badge.fury.io/js/%40tsed%2Fgphoto2-driver) -[![Dependencies](https://david-dm.org/typedproject/ts-gphoto2-driver.svg)](https://david-dm.org/typedproject/ts-gphoto2-driver#info=dependencies) -[![img](https://david-dm.org/typedproject/ts-gphoto2-driver/dev-status.svg)](https://david-dm.org/typedproject/ts-gphoto2-driver/#info=devDependencies) -[![img](https://david-dm.org/typedproject/ts-gphoto2-driver/peer-status.svg)](https://david-dm.org/typedproject/ts-gphoto2-driver/#info=peerDependenciess) -[![Known Vulnerabilities](https://snyk.io/test/github/typedproject/ts-gphoto2-driver/badge.svg)](https://snyk.io/test/github/typedproject/ts-gphoto2-driver) +[![Dependencies](https://david-dm.org/tsedio/ts-gphoto2-driver.svg)](https://david-dm.org/tsedio/ts-gphoto2-driver#info=dependencies) +[![img](https://david-dm.org/tsedio/ts-gphoto2-driver/dev-status.svg)](https://david-dm.org/tsedio/ts-gphoto2-driver/#info=devDependencies) +[![img](https://david-dm.org/tsedio/ts-gphoto2-driver/peer-status.svg)](https://david-dm.org/tsedio/ts-gphoto2-driver/#info=peerDependenciess) +[![Known Vulnerabilities](https://snyk.io/test/github/tsedio/ts-gphoto2-driver/badge.svg)](https://snyk.io/test/github/tsedio/ts-gphoto2-driver) [![semantic-release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg)](https://github.com/semantic-release/semantic-release) [![code style: prettier](https://img.shields.io/badge/code_style-prettier-ff69b4.svg?style=flat-square)](https://github.com/prettier/prettier) @@ -44,7 +44,7 @@ brew install libgphoto2 apt-get install libgphoto2-dev // then -npm install @typedproject/gphoto2-driver +npm install @tsedio/gphoto2-driver ``` ## Usage @@ -53,7 +53,7 @@ Here an example with TypeScript (works also with pure javascript in Node.js): ```typescript import * as Path from "path"; -import { CameraList, closeQuietly } from "@typedproject/gphoto2-driver"; +import { CameraList, closeQuietly } from "@tsedio/gphoto2-driver"; const cameraList = new CameraList().load(); diff --git a/package.json b/package.json index b7d04a0..1a4076b 100644 --- a/package.json +++ b/package.json @@ -10,12 +10,12 @@ "license": "MIT", "repository": { "type": "git", - "url": "https://github.com/TypedProject/ts-gphoto2-driver.git" + "url": "https://github.com/tsedio/ts-gphoto2-driver.git" }, "bugs": { - "url": "https://github.com/TypedProject/ts-gphoto2-driver/issues" + "url": "https://github.com/tsedio/ts-gphoto2-driver/issues" }, - "homepage": "https://github.com/TypedProject/ts-gphoto2-driver", + "homepage": "https://github.com/tsedio/ts-gphoto2-driver", "scripts": { "configure": "monorepo ci configure", "test": "yarn test:lint && yarn test:coverage", diff --git a/packages/gphoto2-core/package.json b/packages/gphoto2-core/package.json index 929c539..a6187e6 100644 --- a/packages/gphoto2-core/package.json +++ b/packages/gphoto2-core/package.json @@ -11,12 +11,12 @@ "license": "MIT", "repository": { "type": "git", - "url": "https://github.com/TypedProject/ts-gphoto2-driver.git" + "url": "https://github.com/tsedio/ts-gphoto2-driver.git" }, "bugs": { - "url": "https://github.com/TypedProject/ts-gphoto2-driver/issues" + "url": "https://github.com/tsedio/ts-gphoto2-driver/issues" }, - "homepage": "https://github.com/TypedProject/ts-gphoto2-driver", + "homepage": "https://github.com/tsedio/ts-gphoto2-driver", "keywords": [ "gphoto-driver", "typescript", diff --git a/packages/gphoto2-core/readme.md b/packages/gphoto2-core/readme.md index dab9d4e..4470db6 100644 --- a/packages/gphoto2-core/readme.md +++ b/packages/gphoto2-core/readme.md @@ -1,13 +1,13 @@ # @tsed/gphoto2-core -[![Build & Release](https://github.com/TypedProject/ts-gphoto2-driver/actions/workflows/build.yml/badge.svg)](https://github.com/TypedProject/ts-gphoto2-driver/actions/workflows/build.yml) -[![Coverage Status](https://coveralls.io/repos/github/TypedProject/ts-gphoto2-driver/badge.svg?branch=production)](https://coveralls.io/github/TypedProject/ts-gphoto2-driver?branch=production) +[![Build & Release](https://github.com/tsedio/ts-gphoto2-driver/actions/workflows/build.yml/badge.svg)](https://github.com/tsedio/ts-gphoto2-driver/actions/workflows/build.yml) +[![Coverage Status](https://coveralls.io/repos/github/tsedio/ts-gphoto2-driver/badge.svg?branch=production)](https://coveralls.io/github/tsedio/ts-gphoto2-driver?branch=production) ![npm](https://img.shields.io/npm/dm/%40tsed%2Fgphoto2-core.svg) [![npm version](https://badge.fury.io/js/%40tsed%2Fgphoto2-core.svg)](https://badge.fury.io/js/%tsed%2Fgphoto2-core) -[![Dependencies](https://david-dm.org/typedproject/ts-gphoto2-driver.svg)](https://david-dm.org/typedproject/ts-gphoto2-driver#info=dependencies) -[![img](https://david-dm.org/typedproject/ts-gphoto2-driver/dev-status.svg)](https://david-dm.org/typedproject/ts-gphoto2-driver/#info=devDependencies) -[![img](https://david-dm.org/typedproject/ts-gphoto2-driver/peer-status.svg)](https://david-dm.org/typedproject/ts-gphoto2-driver/#info=peerDependenciess) -[![Known Vulnerabilities](https://snyk.io/test/github/typedproject/ts-gphoto2-driver/badge.svg)](https://snyk.io/test/github/typedproject/ts-gphoto2-driver) +[![Dependencies](https://david-dm.org/tsedio/ts-gphoto2-driver.svg)](https://david-dm.org/tsedio/ts-gphoto2-driver#info=dependencies) +[![img](https://david-dm.org/tsedio/ts-gphoto2-driver/dev-status.svg)](https://david-dm.org/tsedio/ts-gphoto2-driver/#info=devDependencies) +[![img](https://david-dm.org/tsedio/ts-gphoto2-driver/peer-status.svg)](https://david-dm.org/tsedio/ts-gphoto2-driver/#info=peerDependenciess) +[![Known Vulnerabilities](https://snyk.io/test/github/tsedio/ts-gphoto2-driver/badge.svg)](https://snyk.io/test/github/tsedio/ts-gphoto2-driver) [![semantic-release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg)](https://github.com/semantic-release/semantic-release) [![code style: prettier](https://img.shields.io/badge/code_style-prettier-ff69b4.svg?style=flat-square)](https://github.com/prettier/prettier) diff --git a/packages/gphoto2-driver/package.json b/packages/gphoto2-driver/package.json index 514a826..2fd4ea8 100644 --- a/packages/gphoto2-driver/package.json +++ b/packages/gphoto2-driver/package.json @@ -11,12 +11,12 @@ "license": "MIT", "repository": { "type": "git", - "url": "https://github.com/TypedProject/ts-gphoto2-driver.git" + "url": "https://github.com/tsedio/ts-gphoto2-driver.git" }, "bugs": { - "url": "https://github.com/TypedProject/ts-gphoto2-driver/issues" + "url": "https://github.com/tsedio/ts-gphoto2-driver/issues" }, - "homepage": "https://github.com/TypedProject/ts-gphoto2-driver", + "homepage": "https://github.com/tsedio/ts-gphoto2-driver", "keywords": [ "gphoto-driver", "typescript", diff --git a/packages/gphoto2-driver/readme.md b/packages/gphoto2-driver/readme.md index 4c92969..ef2d4ed 100644 --- a/packages/gphoto2-driver/readme.md +++ b/packages/gphoto2-driver/readme.md @@ -1,13 +1,13 @@ # ts-gphoto2-driver -[![Build & Release](https://github.com/TypedProject/ts-gphoto2-driver/actions/workflows/build.yml/badge.svg)](https://github.com/TypedProject/ts-gphoto2-driver/actions/workflows/build.yml)[![npm version](https://badge.fury.io/js/%40typedproject%2Fgphoto2-driver.svg)](https://badge.fury.io/js/%40typedproject%2Fgphoto2-driver) -[![Coverage Status](https://coveralls.io/repos/github/TypedProject/ts-gphoto2-driver/badge.svg?branch=production)](https://coveralls.io/github/TypedProject/ts-gphoto2-driver?branch=production) +[![Build & Release](https://github.com/tsedio/ts-gphoto2-driver/actions/workflows/build.yml/badge.svg)](https://github.com/tsedio/ts-gphoto2-driver/actions/workflows/build.yml)[![npm version](https://badge.fury.io/js/%40tsedio%2Fgphoto2-driver.svg)](https://badge.fury.io/js/%40tsedio%2Fgphoto2-driver) +[![Coverage Status](https://coveralls.io/repos/github/tsedio/ts-gphoto2-driver/badge.svg?branch=production)](https://coveralls.io/github/tsedio/ts-gphoto2-driver?branch=production) ![npm](https://img.shields.io/npm/dm/%40tsed%2Fgphoto2-driver.svg) [![npm version](https://badge.fury.io/js/%40tsed%2Fgphoto2-driver.svg)](https://badge.fury.io/js/%40tsed%2Fgphoto2-driver) -[![Dependencies](https://david-dm.org/typedproject/ts-gphoto2-driver.svg)](https://david-dm.org/typedproject/ts-gphoto2-driver#info=dependencies) -[![img](https://david-dm.org/typedproject/ts-gphoto2-driver/dev-status.svg)](https://david-dm.org/typedproject/ts-gphoto2-driver/#info=devDependencies) -[![img](https://david-dm.org/typedproject/ts-gphoto2-driver/peer-status.svg)](https://david-dm.org/typedproject/ts-gphoto2-driver/#info=peerDependenciess) -[![Known Vulnerabilities](https://snyk.io/test/github/typedproject/ts-gphoto2-driver/badge.svg)](https://snyk.io/test/github/typedproject/ts-gphoto2-driver) +[![Dependencies](https://david-dm.org/tsedio/ts-gphoto2-driver.svg)](https://david-dm.org/tsedio/ts-gphoto2-driver#info=dependencies) +[![img](https://david-dm.org/tsedio/ts-gphoto2-driver/dev-status.svg)](https://david-dm.org/tsedio/ts-gphoto2-driver/#info=devDependencies) +[![img](https://david-dm.org/tsedio/ts-gphoto2-driver/peer-status.svg)](https://david-dm.org/tsedio/ts-gphoto2-driver/#info=peerDependenciess) +[![Known Vulnerabilities](https://snyk.io/test/github/tsedio/ts-gphoto2-driver/badge.svg)](https://snyk.io/test/github/tsedio/ts-gphoto2-driver) [![semantic-release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg)](https://github.com/semantic-release/semantic-release) [![code style: prettier](https://img.shields.io/badge/code_style-prettier-ff69b4.svg?style=flat-square)](https://github.com/prettier/prettier) diff --git a/packages/ts-gphoto2-driver/package.json b/packages/ts-gphoto2-driver/package.json index a416d35..db61eae 100644 --- a/packages/ts-gphoto2-driver/package.json +++ b/packages/ts-gphoto2-driver/package.json @@ -11,12 +11,12 @@ "license": "MIT", "repository": { "type": "git", - "url": "https://github.com/TypedProject/ts-gphoto2-driver.git" + "url": "https://github.com/tsedio/ts-gphoto2-driver.git" }, "bugs": { - "url": "https://github.com/TypedProject/ts-gphoto2-driver/issues" + "url": "https://github.com/tsedio/ts-gphoto2-driver/issues" }, - "homepage": "https://github.com/TypedProject/ts-gphoto2-driver", + "homepage": "https://github.com/tsedio/ts-gphoto2-driver", "keywords": [ "gphoto-driver", "typescript", diff --git a/packages/ts-gphoto2-driver/readme.md b/packages/ts-gphoto2-driver/readme.md index b3f9a14..2a18f7a 100644 --- a/packages/ts-gphoto2-driver/readme.md +++ b/packages/ts-gphoto2-driver/readme.md @@ -1,13 +1,13 @@ # @tsed/gphoto2-driver -[![Build & Release](https://github.com/TypedProject/ts-gphoto2-driver/actions/workflows/build.yml/badge.svg)](https://github.com/TypedProject/ts-gphoto2-driver/actions/workflows/build.yml) -[![Coverage Status](https://coveralls.io/repos/github/TypedProject/ts-gphoto2-driver/badge.svg?branch=production)](https://coveralls.io/github/TypedProject/ts-gphoto2-driver?branch=production) +[![Build & Release](https://github.com/tsedio/ts-gphoto2-driver/actions/workflows/build.yml/badge.svg)](https://github.com/tsedio/ts-gphoto2-driver/actions/workflows/build.yml) +[![Coverage Status](https://coveralls.io/repos/github/tsedio/ts-gphoto2-driver/badge.svg?branch=production)](https://coveralls.io/github/tsedio/ts-gphoto2-driver?branch=production) ![npm](https://img.shields.io/npm/dm/%40tsed%2Fgphoto2-driver.svg) [![npm version](https://badge.fury.io/js/%40tsed%2Fgphoto2-driver.svg)](https://badge.fury.io/js/%40tsed%2Fgphoto2-driver) -[![Dependencies](https://david-dm.org/typedproject/ts-gphoto2-driver.svg)](https://david-dm.org/typedproject/ts-gphoto2-driver#info=dependencies) -[![img](https://david-dm.org/typedproject/ts-gphoto2-driver/dev-status.svg)](https://david-dm.org/typedproject/ts-gphoto2-driver/#info=devDependencies) -[![img](https://david-dm.org/typedproject/ts-gphoto2-driver/peer-status.svg)](https://david-dm.org/typedproject/ts-gphoto2-driver/#info=peerDependenciess) -[![Known Vulnerabilities](https://snyk.io/test/github/typedproject/ts-gphoto2-driver/badge.svg)](https://snyk.io/test/github/typedproject/ts-gphoto2-driver) +[![Dependencies](https://david-dm.org/tsedio/ts-gphoto2-driver.svg)](https://david-dm.org/tsedio/ts-gphoto2-driver#info=dependencies) +[![img](https://david-dm.org/tsedio/ts-gphoto2-driver/dev-status.svg)](https://david-dm.org/tsedio/ts-gphoto2-driver/#info=devDependencies) +[![img](https://david-dm.org/tsedio/ts-gphoto2-driver/peer-status.svg)](https://david-dm.org/tsedio/ts-gphoto2-driver/#info=peerDependenciess) +[![Known Vulnerabilities](https://snyk.io/test/github/tsedio/ts-gphoto2-driver/badge.svg)](https://snyk.io/test/github/tsedio/ts-gphoto2-driver) [![semantic-release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg)](https://github.com/semantic-release/semantic-release) [![code style: prettier](https://img.shields.io/badge/code_style-prettier-ff69b4.svg?style=flat-square)](https://github.com/prettier/prettier)