@digipair/skill-git 0.7.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/index.cjs.d.ts ADDED
@@ -0,0 +1 @@
1
+ export * from "./src/index";
package/index.cjs.js ADDED
@@ -0,0 +1,9 @@
1
+ 'use strict';
2
+
3
+ Object.defineProperty(exports, '__esModule', { value: true });
4
+
5
+ function skillGit() {
6
+ return 'skill-git';
7
+ }
8
+
9
+ exports.skillGit = skillGit;
package/index.d.ts ADDED
@@ -0,0 +1 @@
1
+ export * from 'libs/skill-git/src/index';
@@ -0,0 +1 @@
1
+ export * from './lib/skill-git';
@@ -0,0 +1 @@
1
+ export declare function skillGit(): string;
package/package.json ADDED
@@ -0,0 +1,8 @@
1
+ {
2
+ "name": "@digipair/skill-git",
3
+ "version": "0.7.0",
4
+ "dependencies": {},
5
+ "type": "commonjs",
6
+ "main": "./index.cjs.js",
7
+ "module": "./index.js"
8
+ }
package/schema.json ADDED
@@ -0,0 +1,13 @@
1
+ {
2
+ "openapi": "3.0.0",
3
+ "info": {
4
+ "title": "@digipair/skill-git",
5
+ "summary": "Gestion d'un dépôt git",
6
+ "description": "Cette compétence permet de gérer un dépôt git.",
7
+ "version": "0.1.0",
8
+ "x-icon": "💾"
9
+ },
10
+ "paths": {},
11
+ "components": {},
12
+ "x-scene-blocks": {}
13
+ }