gaboesquivel 3.3.3 → 3.3.5
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/package.json +4 -4
- package/src/index.ts +1 -0
- package/dist/index.d.mts +0 -46
- package/dist/index.d.ts +0 -46
- package/dist/index.js +0 -1105
- package/dist/index.mjs +0 -1074
package/package.json
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "gaboesquivel",
|
|
3
|
-
"version": "3.3.
|
|
3
|
+
"version": "3.3.5",
|
|
4
4
|
"description": "Gabo Esquivel - Software Engineer",
|
|
5
5
|
"author": "Gabo Esquivel",
|
|
6
6
|
"main": "./dist/index.js",
|
|
7
7
|
"types": "./dist/index.d.ts",
|
|
8
|
-
"bin": "./dist/scripts/gaboesquivel.js",
|
|
9
|
-
"license": "MIT",
|
|
10
8
|
"scripts": {
|
|
11
|
-
"build": "tsup src/index.ts --format cjs,esm --dts"
|
|
9
|
+
"build": "tsup src/index.ts --format cjs,esm --dts",
|
|
10
|
+
"dev": "tsup src/index.ts --format cjs,esm --dts --watch" ,
|
|
11
|
+
"publish": "npm run build && npm publish --public"
|
|
12
12
|
},
|
|
13
13
|
"devDependencies": {
|
|
14
14
|
"tsup": "^8.4.0",
|
package/src/index.ts
CHANGED
package/dist/index.d.mts
DELETED
|
@@ -1,46 +0,0 @@
|
|
|
1
|
-
interface Project {
|
|
2
|
-
title: string;
|
|
3
|
-
slug: string;
|
|
4
|
-
description: string;
|
|
5
|
-
technologies: string[];
|
|
6
|
-
tags: string[];
|
|
7
|
-
link?: string;
|
|
8
|
-
image: string;
|
|
9
|
-
repo?: string;
|
|
10
|
-
video?: string;
|
|
11
|
-
images?: string[];
|
|
12
|
-
achievements: string[];
|
|
13
|
-
story: string[];
|
|
14
|
-
}
|
|
15
|
-
interface TechStackItem {
|
|
16
|
-
name: string;
|
|
17
|
-
icon: string;
|
|
18
|
-
tag: string;
|
|
19
|
-
image: string;
|
|
20
|
-
description: string;
|
|
21
|
-
link: string;
|
|
22
|
-
since: string;
|
|
23
|
-
intro: string[];
|
|
24
|
-
experience: string[];
|
|
25
|
-
}
|
|
26
|
-
|
|
27
|
-
declare const projects: Project[];
|
|
28
|
-
|
|
29
|
-
declare const techStack: TechStackItem[];
|
|
30
|
-
|
|
31
|
-
declare function getProjectBySlug(slug: string): Project | undefined;
|
|
32
|
-
declare function getTechStackByTag(tag: string): {
|
|
33
|
-
projects: Project[];
|
|
34
|
-
name?: string | undefined;
|
|
35
|
-
icon?: string | undefined;
|
|
36
|
-
tag?: string | undefined;
|
|
37
|
-
image?: string | undefined;
|
|
38
|
-
description?: string | undefined;
|
|
39
|
-
link?: string | undefined;
|
|
40
|
-
since?: string | undefined;
|
|
41
|
-
intro?: string[] | undefined;
|
|
42
|
-
experience?: string[] | undefined;
|
|
43
|
-
};
|
|
44
|
-
declare function getProjectsByTechnology(tag: string): Project[];
|
|
45
|
-
|
|
46
|
-
export { getProjectBySlug, getProjectsByTechnology, getTechStackByTag, projects, techStack };
|
package/dist/index.d.ts
DELETED
|
@@ -1,46 +0,0 @@
|
|
|
1
|
-
interface Project {
|
|
2
|
-
title: string;
|
|
3
|
-
slug: string;
|
|
4
|
-
description: string;
|
|
5
|
-
technologies: string[];
|
|
6
|
-
tags: string[];
|
|
7
|
-
link?: string;
|
|
8
|
-
image: string;
|
|
9
|
-
repo?: string;
|
|
10
|
-
video?: string;
|
|
11
|
-
images?: string[];
|
|
12
|
-
achievements: string[];
|
|
13
|
-
story: string[];
|
|
14
|
-
}
|
|
15
|
-
interface TechStackItem {
|
|
16
|
-
name: string;
|
|
17
|
-
icon: string;
|
|
18
|
-
tag: string;
|
|
19
|
-
image: string;
|
|
20
|
-
description: string;
|
|
21
|
-
link: string;
|
|
22
|
-
since: string;
|
|
23
|
-
intro: string[];
|
|
24
|
-
experience: string[];
|
|
25
|
-
}
|
|
26
|
-
|
|
27
|
-
declare const projects: Project[];
|
|
28
|
-
|
|
29
|
-
declare const techStack: TechStackItem[];
|
|
30
|
-
|
|
31
|
-
declare function getProjectBySlug(slug: string): Project | undefined;
|
|
32
|
-
declare function getTechStackByTag(tag: string): {
|
|
33
|
-
projects: Project[];
|
|
34
|
-
name?: string | undefined;
|
|
35
|
-
icon?: string | undefined;
|
|
36
|
-
tag?: string | undefined;
|
|
37
|
-
image?: string | undefined;
|
|
38
|
-
description?: string | undefined;
|
|
39
|
-
link?: string | undefined;
|
|
40
|
-
since?: string | undefined;
|
|
41
|
-
intro?: string[] | undefined;
|
|
42
|
-
experience?: string[] | undefined;
|
|
43
|
-
};
|
|
44
|
-
declare function getProjectsByTechnology(tag: string): Project[];
|
|
45
|
-
|
|
46
|
-
export { getProjectBySlug, getProjectsByTechnology, getTechStackByTag, projects, techStack };
|