Merge pull request #8 from oceanlvr/cjs
Showing
... | @@ -5,13 +5,14 @@ | ... | @@ -5,13 +5,14 @@ |
"author": "Travis Fischer <travis@transitivebullsh.it>", | "author": "Travis Fischer <travis@transitivebullsh.it>", | ||
"repository": "transitive-bullshit/chatgpt-api", | "repository": "transitive-bullshit/chatgpt-api", | ||
"license": "MIT", | "license": "MIT", | ||
"type": "module", | |||
"source": "./src/index.ts", | |||
"types": "./build/index.d.ts", | "types": "./build/index.d.ts", | ||
"module": "./build/index.mjs", | |||
"exports": { | "exports": { | ||
"import": "./build/index.js", | ".": { | ||
"default": "./build/index.js", | "require": "./build/index.js", | ||
"types": "./build/index.d.ts" | "import": "./build/index.mjs", | ||
"types": "./build/index.d.ts" | |||
} | |||
}, | }, | ||
"files": [ | "files": [ | ||
"build" | "build" | ||
... | ... |
Please register or sign in to comment