Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,14 @@ All notable changes to the "PromptMate" extension will be documented in this fil

Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how to structure this file.

## [Unreleased]
## [v0.1.1]

- Confirm before running shell commands

## [v0.1.0]

- Add autonomous mode

## [v0.0.1]

- Initial release
24 changes: 14 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "promptmate",
"displayName": "PromptMate",
"description": "An extension to help you develop using GPT",
"version": "0.1.0",
"version": "0.1.1",
"engines": {
"vscode": "^1.76.0"
},
Expand All @@ -24,9 +24,10 @@
"openai"
],
"activationEvents": [],
"main": "./dist/extension.js",
"main": "./dist/extension.cjs",
"publisher": "MateusZitelli",
"icon": "resources/logo-small.png",
"type": "module",
"contributes": {
"commands": [
{
Expand Down Expand Up @@ -101,23 +102,26 @@
"devDependencies": {
"@types/glob": "^8.1.0",
"@types/mocha": "^10.0.1",
"@types/node": "16.x",
"@types/node": "~16.18.23",
"@types/vscode": "^1.76.0",
"@typescript-eslint/eslint-plugin": "^5.53.0",
"@typescript-eslint/parser": "^5.53.0",
"@vscode/test-electron": "^2.2.3",
"eslint": "^8.34.0",
"@typescript-eslint/eslint-plugin": "^5.58.0",
"@typescript-eslint/parser": "^5.58.0",
"@vscode/test-electron": "^2.3.0",
"eslint": "^8.38.0",
"glob": "^8.1.0",
"html-loader": "^4.2.0",
"mocha": "^10.2.0",
"ts-loader": "^9.4.2",
"typescript": "^4.9.5",
"webpack": "^5.75.0",
"webpack": "^5.79.0",
"webpack-cli": "^5.0.1"
},
"dependencies": {
"axios": "^1.3.4",
"axios": "^0.26.1",
"cheerio": "1.0.0-rc.12",
"dotenv": "^16.0.3",
"micromark": "^3.1.0"
"langchain": "^0.0.57",
"micromark": "^3.1.0",
"node-fetch": "^3.3.1"
}
}
Loading