-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.51 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "format-gpt",
"version": "1.1.0",
"description": "ChatGPT output formatter.",
"repository": {
"url": "https://github.com/karenpommeroy/format-gpt.git"
},
"main": "dist/index.js",
"author": "Marcin Karpiński <[email protected]>",
"license": "MIT",
"types": "./dist/types/index.d.ts",
"scripts": {
"build": "yarn build:dev",
"build:dev": "NODE_ENV=development && webpack --config webpack.config.ts",
"build:prod": "NODE_ENV=production && webpack --config webpack.config.ts",
"lint": "eslint --fix -c ./.eslintrc.json",
"test": "jest",
"postinstall": "yarn set version stable && yarn dlx @yarnpkg/sdks vscode && yarn dlx @yarnpkg/sdks base"
},
"dependencies": {
"axios": "^1.6.2",
"lodash": "^4.17.21",
"openai": "^4.20.1"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/eslint": "^8.44.8",
"@types/jest": "^29.5.10",
"@types/lodash": "^4.14.202",
"@types/node": "^20.10.2",
"@types/webpack": "^5.28.5",
"@typescript-eslint/eslint-plugin": "^6.13.1",
"@typescript-eslint/parser": "^6.13.1",
"eslint": "^8.55.0",
"eslint-config-prettier": "^9.0.0",
"eslint-webpack-plugin": "^4.0.1",
"jest": "^29.7.0",
"prettier": "^2.8.8",
"terser-webpack-plugin": "^5.3.9",
"ts-jest": "^29.1.1",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.1",
"typescript": "^5.3.2",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4",
"webpack-node-externals": "^3.0.0"
},
"packageManager": "[email protected]"
}