Skip to content

Commit b9e667f

Browse files
fix: restore package entry point and export types
1 parent e8c3849 commit b9e667f

2 files changed

Lines changed: 10 additions & 2 deletions

File tree

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
"name": "stackscan",
33
"version": "0.1.8",
44
"description": "Automatically detect tech stacks from repositories and generate logos, JSON, and markdown for portfolios.",
5-
"main": "dist/index.cjs",
6-
"module": "dist/index.js",
5+
"main": "dist/index.js",
6+
"module": "dist/index.mjs",
77
"types": "dist/index.d.ts",
88
"bin": {
99
"stackscan": "./dist/cli.js"

src/index.ts

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
export * from './add';
2+
export * from './defaults';
3+
export * from './output';
4+
export * from './scan';
5+
export * from './sync';
6+
export * from './techDefinitions';
7+
export * from './techMap';
8+
export * from './types';

0 commit comments

Comments
 (0)