This repository has been archived by the owner on Oct 1, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
66 lines (66 loc) · 2.06 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "chat-gpt-authenticator",
"version": "0.0.0",
"description": "OpenAI Authentication Library for ChatGPT",
"author": "Allan Oricil <allan@oricil.com>",
"license": "MIT",
"homepage": "https://github.com/AllanOricil/chat-gpt-authenticator#readme",
"repository": {
"type": "git",
"url": "https://github.com/AllanOricil/chat-gpt-authenticator"
},
"main": "./dist/index.cjs",
"types": "./dist/index.d.ts",
"module": "./dist/index.mjs",
"source": "./src/index.js",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"engines": {
"node": ">=14"
},
"scripts": {
"prepare": "husky install",
"lint": "eslint **/*.js",
"lintFix": "eslint **/*.js --fix",
"format": "prettier --write \"**/*.{js,json,yml}\"",
"test:integration": "node ./test/integration/index.mjs && node ./test/integration/index.cjs",
"build": "rollup --config --bundleConfigAsCjs"
},
"dependencies": {
"fetch-cookie": "^2.1.0",
"node-fetch": "^2.6.9",
"set-cookie-parser": "^2.5.1"
},
"devDependencies": {
"@babel/core": "^7.21.0",
"@babel/eslint-parser": "^7.19.1",
"@babel/plugin-external-helpers": "^7.18.6",
"@babel/plugin-proposal-decorators": "^7.21.0",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.21.0",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^24.0.1",
"@rollup/plugin-node-resolve": "^15.0.1",
"eslint": "^8.34.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-node": "^4.1.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"husky": "^8.0.3",
"prettier": "^2.8.4",
"rollup": "^3.17.2",
"rollup-plugin-cleanup": "^3.2.1",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-delete": "^2.0.0"
}
}