Skip to content

Commit

Permalink
Update package.json
Browse files Browse the repository at this point in the history
  • Loading branch information
zachey01 committed Jul 10, 2024
1 parent 7f7e01b commit 6314cf7
Showing 1 changed file with 21 additions and 17 deletions.
38 changes: 21 additions & 17 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,24 @@
"description": "Using ChatGPT4/3.5-turbo/Gemini-Pro/BlackBox and etc. unlimited and free.",
"main": "index.cjs",
"module": "index.js",
"jest": {
"transform": {
"^.+\\.js$": "babel-jest"
}
},
"exports": {
".": {
"import": "./index.js",
"require": "./index.cjs"
}
},
"type": "module",
"bin": {
"gpt4js": "./src/bin/main.js"
"devDependencies": {
"@babel/preset-env": "^7.24.7",
"babel-jest": "^29.7.0",
"jest": "^29.7.0",
"prettier": "3.3.2",
"webpack-cli": "^5.1.4"
},
"scripts": {
"build": "npx webpack --mode=production",
Expand All @@ -17,15 +32,6 @@
"prettier:format": "prettier --write \"**/*.{ts,tsx,js,md,mdx,css,yaml}\"",
"prettier:check": "prettier --check \"**/*.{ts,tsx,js,md,mdx,css,yaml}\""
},
"devDependencies": {
"@babel/preset-env": "^7.24.7",
"babel-jest": "^29.7.0",
"bun": "^0.5.1",
"jest": "^29.7.0",
"prettier": "3.3.2",
"webpack": "^5.74.0",
"webpack-cli": "^5.1.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zachey01/gpt4free.js.git"
Expand All @@ -35,6 +41,9 @@
"bugs": {
"url": "https://github.com/zachey01/gpt4free.js/issues"
},
"bin": {
"gpt4js": "./src/bin/main.js"
},
"homepage": "https://github.com/zachey01/gpt4free.js#readme",
"keywords": [
"nodejs",
Expand All @@ -52,10 +61,5 @@
"chatbot",
"nlp",
"machine-learning"
],
"jest": {
"transform": {
"^.+.js$": "babel-jest"
}
}
]
}

0 comments on commit 6314cf7

Please sign in to comment.