File tree Expand file tree Collapse file tree 2 files changed +19
-2
lines changed Expand file tree Collapse file tree 2 files changed +19
-2
lines changed Original file line number Diff line number Diff line change 2
2
"name" : " notion-to-utils" ,
3
3
"version" : " 0.0.0" ,
4
4
"description" : " " ,
5
- "main" : " index.js" ,
5
+ "repository" : {
6
+ "type" : " git" ,
7
+ "url" : " https://github.com/01-binary/notion-to-jsx" ,
8
+ "directory" : " /packages/notion-to-utils"
9
+ },
10
+ "type" : " module" ,
11
+ "exports" : {
12
+ "." : {
13
+ "import" : {
14
+ "types" : " ./dist/index.d.mts" ,
15
+ "default" : " ./dist/index.mjs"
16
+ }
17
+ }
18
+ },
19
+ "files" : [
20
+ " dist"
21
+ ],
22
+ "sideEffects" : false ,
6
23
"scripts" : {
7
24
"test" : " vitest" ,
8
25
"test:watch" : " vitest --watch" ,
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ import { defineConfig } from 'tsup';
3
3
export default defineConfig ( {
4
4
entry : [ 'src/index.ts' ] ,
5
5
target : 'esnext' ,
6
- format : [ 'cjs' , ' esm'] ,
6
+ format : [ 'esm' ] ,
7
7
splitting : true ,
8
8
treeshake : true ,
9
9
clean : true ,
You can’t perform that action at this time.
0 commit comments