stackscan 0.1.23 → 0.1.24

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/dist/techMap.js CHANGED
@@ -858,7 +858,8 @@ var techDefinitions = [
858
858
  "id": "figma",
859
859
  "name": "Figma",
860
860
  "aliases": [
861
- "figma"
861
+ "figma",
862
+ "figma-api"
862
863
  ],
863
864
  "category": "utility",
864
865
  "logo": "utility/figma.svg",
@@ -868,7 +869,8 @@ var techDefinitions = [
868
869
  "id": "notion",
869
870
  "name": "Notion",
870
871
  "aliases": [
871
- "notion"
872
+ "notion",
873
+ "@notionhq/client"
872
874
  ],
873
875
  "category": "utility",
874
876
  "logo": "utility/notion.svg",
@@ -878,7 +880,8 @@ var techDefinitions = [
878
880
  "id": "slack",
879
881
  "name": "Slack",
880
882
  "aliases": [
881
- "slack"
883
+ "slack",
884
+ "@slack/web-api"
882
885
  ],
883
886
  "category": "utility",
884
887
  "logo": "utility/slack.svg",
@@ -898,7 +901,8 @@ var techDefinitions = [
898
901
  "id": "githubcopilot",
899
902
  "name": "GitHub Copilot",
900
903
  "aliases": [
901
- "github-copilot"
904
+ "github-copilot",
905
+ "github-copilot-extension"
902
906
  ],
903
907
  "category": "ai",
904
908
  "logo": "ai/githubcopilot.svg",
@@ -1530,7 +1534,8 @@ var techDefinitions = [
1530
1534
  "id": "docker",
1531
1535
  "name": "Docker",
1532
1536
  "aliases": [
1533
- "docker"
1537
+ "docker",
1538
+ "dockerode"
1534
1539
  ],
1535
1540
  "category": "container",
1536
1541
  "logo": "container/docker.svg",
@@ -1643,7 +1648,8 @@ var techDefinitions = [
1643
1648
  "id": "netlify",
1644
1649
  "name": "Netlify",
1645
1650
  "aliases": [
1646
- "netlify"
1651
+ "netlify",
1652
+ "netlify-cli"
1647
1653
  ],
1648
1654
  "category": "hosting",
1649
1655
  "logo": "hosting/netlify.svg",
package/dist/techMap.mjs CHANGED
@@ -1,7 +1,7 @@
1
1
  import {
2
2
  techMap
3
- } from "./chunk-ZI6X666F.mjs";
4
- import "./chunk-QBOEIUY2.mjs";
3
+ } from "./chunk-HKCVFKM4.mjs";
4
+ import "./chunk-E75XPZ2U.mjs";
5
5
  import "./chunk-EOKQCSHI.mjs";
6
6
  export {
7
7
  techMap
package/dist/types.d.mts CHANGED
@@ -12,7 +12,7 @@ interface TechDefinition {
12
12
  logo: string;
13
13
  frameworks?: string[];
14
14
  }
15
- interface StackSyncConfig {
15
+ interface StackScanConfig {
16
16
  ignore?: string[];
17
17
  aliases?: Record<string, string>;
18
18
  logosPath?: string;
@@ -21,4 +21,4 @@ interface StackSyncConfig {
21
21
  iconColors?: Record<string, string>;
22
22
  }
23
23
 
24
- export type { DetectorResult, StackSyncConfig, TechDefinition };
24
+ export type { DetectorResult, StackScanConfig, TechDefinition };
package/dist/types.d.ts CHANGED
@@ -12,7 +12,7 @@ interface TechDefinition {
12
12
  logo: string;
13
13
  frameworks?: string[];
14
14
  }
15
- interface StackSyncConfig {
15
+ interface StackScanConfig {
16
16
  ignore?: string[];
17
17
  aliases?: Record<string, string>;
18
18
  logosPath?: string;
@@ -21,4 +21,4 @@ interface StackSyncConfig {
21
21
  iconColors?: Record<string, string>;
22
22
  }
23
23
 
24
- export type { DetectorResult, StackSyncConfig, TechDefinition };
24
+ export type { DetectorResult, StackScanConfig, TechDefinition };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "stackscan",
3
- "version": "0.1.23",
3
+ "version": "0.1.24",
4
4
  "description": "Automatically detect tech stacks from repositories and generate logos, JSON, and markdown for portfolios.",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",