|
1 | 1 | { |
2 | 2 | "name": "chatgpt-browser-api-proxy", |
3 | | - "version": "0.0.1", |
4 | | - "description": "", |
5 | | - "author": "", |
| 3 | + "version": "0.0.0", |
| 4 | + "description": "A powerful API proxy that seamlessly integrates ChatGPT unofficial browser API with OpenAI, bypassing CloudFlare's anti-bot detection for uninterrupted access.", |
| 5 | + "author": "abhishek <@rpidanny>", |
6 | 6 | "private": true, |
7 | | - "license": "UNLICENSED", |
| 7 | + "license": "MIT", |
8 | 8 | "type": "module", |
| 9 | + "lint-staged": { |
| 10 | + "*.ts": [ |
| 11 | + "yarn lint" |
| 12 | + ] |
| 13 | + }, |
9 | 14 | "scripts": { |
10 | 15 | "build": "nest build", |
11 | 16 | "format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"", |
|
18 | 23 | "test:watch": "jest --watch", |
19 | 24 | "test:cov": "jest --coverage", |
20 | 25 | "test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand", |
21 | | - "test:e2e": "jest --config ./test/jest-e2e.json" |
| 26 | + "test:e2e": "jest --config ./test/jest-e2e.json", |
| 27 | + "release": "semantic-release" |
22 | 28 | }, |
23 | 29 | "dependencies": { |
24 | 30 | "@nestjs/common": "^9.0.0", |
|
33 | 39 | "rxjs": "^7.2.0" |
34 | 40 | }, |
35 | 41 | "devDependencies": { |
| 42 | + "@commitlint/cli": "^17.6.3", |
| 43 | + "@commitlint/config-conventional": "^17.6.3", |
36 | 44 | "@nestjs/cli": "^9.0.0", |
37 | 45 | "@nestjs/schematics": "^9.0.0", |
38 | 46 | "@nestjs/testing": "^9.0.0", |
39 | 47 | "@rpidanny/eslint-config-typescript": "^1.1.0", |
| 48 | + "@semantic-release/changelog": "^6.0.3", |
| 49 | + "@semantic-release/commit-analyzer": "^9.0.2", |
| 50 | + "@semantic-release/git": "^10.0.1", |
| 51 | + "@semantic-release/github": "^8.0.7", |
| 52 | + "@semantic-release/npm": "^10.0.3", |
| 53 | + "@semantic-release/release-notes-generator": "^11.0.1", |
40 | 54 | "@types/express": "^4.17.13", |
41 | 55 | "@types/jest": "29.5.0", |
42 | 56 | "@types/node": "18.15.11", |
43 | 57 | "@types/supertest": "^2.0.11", |
44 | 58 | "@typescript-eslint/eslint-plugin": "^5.0.0", |
45 | 59 | "@typescript-eslint/parser": "^5.0.0", |
| 60 | + "commitlint": "^17.6.3", |
46 | 61 | "eslint": "^8.0.1", |
47 | 62 | "eslint-config-prettier": "^8.3.0", |
48 | 63 | "eslint-plugin-prettier": "^4.0.0", |
49 | 64 | "eslint-plugin-simple-import-sort": "^10.0.0", |
| 65 | + "husky": "^8.0.3", |
50 | 66 | "jest": "29.5.0", |
| 67 | + "lint-staged": "^13.2.2", |
51 | 68 | "prettier": "^2.3.2", |
| 69 | + "semantic-release": "^21.0.2", |
52 | 70 | "source-map-support": "^0.5.20", |
53 | 71 | "supertest": "^6.1.3", |
54 | 72 | "ts-jest": "29.0.5", |
55 | 73 | "ts-loader": "^9.2.3", |
56 | 74 | "ts-node": "^10.0.0", |
57 | 75 | "tsconfig-paths": "4.2.0", |
58 | 76 | "typescript": "^4.7.4" |
59 | | - }, |
60 | | - "jest": { |
61 | | - "moduleFileExtensions": [ |
62 | | - "js", |
63 | | - "json", |
64 | | - "ts" |
65 | | - ], |
66 | | - "rootDir": "src", |
67 | | - "testRegex": ".*\\.spec\\.ts$", |
68 | | - "transform": { |
69 | | - "^.+\\.(t|j)s$": "ts-jest" |
70 | | - }, |
71 | | - "collectCoverageFrom": [ |
72 | | - "**/*.(t|j)s" |
73 | | - ], |
74 | | - "coverageDirectory": "../coverage", |
75 | | - "testEnvironment": "node" |
76 | 77 | } |
77 | 78 | } |
0 commit comments