This commit is contained in:
Maxim Slipenko 2024-01-11 21:10:47 +03:00
parent 1c849cdd48
commit 952dd831d9
4 changed files with 53 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
node_modules

1
.nvmrc Normal file
View File

@ -0,0 +1 @@
20.11

29
package-lock.json generated Normal file
View File

@ -0,0 +1,29 @@
{
"name": "gpt4free-typescript",
"version": "0.0.1",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "gpt4free-typescript",
"version": "0.0.1",
"license": "GPL-3.0",
"devDependencies": {
"typescript": "^5.3.3"
}
},
"node_modules/typescript": {
"version": "5.3.3",
"resolved": "https://registry.npmjs.org/typescript/-/typescript-5.3.3.tgz",
"integrity": "sha512-pXWcraxM0uxAS+tN0AG/BF2TyqmHO014Z070UsJ+pFvYuRSq8KH8DmWpnbXe0pEPDHXZV3FcAbJkijJ5oNEnWw==",
"dev": true,
"bin": {
"tsc": "bin/tsc",
"tsserver": "bin/tsserver"
},
"engines": {
"node": ">=14.17"
}
}
}
}

22
package.json Normal file
View File

@ -0,0 +1,22 @@
{
"name": "gpt4free-typescript",
"version": "0.0.1",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Maks1mS/gpt4free-typescript.git"
},
"author": "",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/Maks1mS/gpt4free-typescript/issues"
},
"homepage": "https://github.com/Maks1mS/gpt4free-typescript#readme",
"devDependencies": {
"typescript": "^5.3.3"
}
}