Skip to content
This repository was archived by the owner on Jun 2, 2023. It is now read-only.

Commit 5745fdd

Browse files
committed
chore: init project
0 parents  commit 5745fdd

19 files changed

+3442
-0
lines changed

.gitignore

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
.cache
2+
.DS_Store
3+
.idea
4+
*.log
5+
*.tgz
6+
coverage
7+
dist
8+
lib-cov
9+
logs
10+
node_modules
11+
temp
12+
cookies.json

LICENSE

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2023 KeJun <https://github.com/kejunmao>
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# edgegpt

package.json

+71
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,71 @@
1+
{
2+
"name": "edgegpt",
3+
"type": "module",
4+
"version": "0.0.0",
5+
"packageManager": "[email protected]",
6+
"description": "",
7+
"author": "KeJun",
8+
"license": "MIT",
9+
"homepage": "https://github.com/kejunmao/edgegpt#readme",
10+
"repository": {
11+
"type": "git",
12+
"url": "git+https://github.com/kejunmao/edgegpt.git"
13+
},
14+
"bugs": "https://github.com/kejunmao/edgegpt/issues",
15+
"keywords": [],
16+
"sideEffects": false,
17+
"exports": {
18+
".": {
19+
"types": "./dist/index.d.ts",
20+
"require": "./dist/index.cjs",
21+
"import": "./dist/index.mjs"
22+
}
23+
},
24+
"main": "./dist/index.mjs",
25+
"module": "./dist/index.mjs",
26+
"types": "./dist/index.d.ts",
27+
"typesVersions": {
28+
"*": {
29+
"*": [
30+
"./dist/*",
31+
"./dist/index.d.ts"
32+
]
33+
}
34+
},
35+
"files": [
36+
"dist"
37+
],
38+
"scripts": {
39+
"build": "tsup",
40+
"dev": "tsup --watch",
41+
"prepublishOnly": "pnpm build",
42+
"release": "bumpp && npm publish",
43+
"start": "esno src/index.ts",
44+
"test": "vitest"
45+
},
46+
"devDependencies": {
47+
"@types/lodash-es": "^4.17.6",
48+
"@types/node": "^18.13.0",
49+
"@types/prompts": "^2.4.2",
50+
"@types/uuid": "^9.0.0",
51+
"@types/ws": "^8.5.4",
52+
"@types/yargs": "^17.0.22",
53+
"bumpp": "^8.2.1",
54+
"esno": "^0.16.3",
55+
"tsup": "^6.6.3",
56+
"typed-emitter": "^2.1.0",
57+
"typescript": "^4.9.5",
58+
"vite": "^4.1.1",
59+
"vitest": "^0.28.5"
60+
},
61+
"dependencies": {
62+
"c12": "^1.1.2",
63+
"consola": "^2.15.3",
64+
"lodash-es": "^4.17.21",
65+
"ofetch": "^1.0.1",
66+
"prompts": "^2.4.2",
67+
"uuid": "^9.0.0",
68+
"ws": "^8.12.1",
69+
"yargs": "^17.7.0"
70+
}
71+
}

0 commit comments

Comments
 (0)