This repository has been archived by the owner on Jun 2, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
75 lines (75 loc) · 1.64 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
67
68
69
70
71
72
73
74
75
{
"name": "edgegpt",
"type": "module",
"version": "0.0.12",
"packageManager": "pnpm@7.27.0",
"description": "",
"author": "KeJun",
"license": "MIT",
"homepage": "https://github.com/kejunmao/edgegpt#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/kejunmao/edgegpt.git"
},
"bugs": "https://github.com/kejunmao/edgegpt/issues",
"keywords": [],
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"import": "./dist/index.js"
}
},
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": "./dist/cli.js",
"typesVersions": {
"*": {
"*": [
"./dist/*",
"./dist/index.d.ts"
]
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"prepublishOnly": "pnpm build",
"release": "bumpp",
"start": "esno src/index.ts",
"test": "vitest"
},
"devDependencies": {
"@types/lodash": "^4.14.191",
"@types/node": "^18.13.0",
"@types/prompts": "^2.4.2",
"@types/uuid": "^9.0.0",
"@types/ws": "^8.5.4",
"@types/yargs": "^17.0.22",
"bumpp": "^8.2.1",
"esno": "^0.16.3",
"tsup": "^6.6.3",
"typed-emitter": "^2.1.0",
"typescript": "^4.9.5",
"vite": "^4.1.1",
"vitest": "^0.28.5"
},
"dependencies": {
"c12": "^1.1.2",
"chalk": "^5.2.0",
"consola": "^2.15.3",
"lodash": "^4.17.21",
"marked": "^4.2.12",
"marked-terminal": "^5.1.1",
"ora": "^6.1.2",
"prompts": "^2.4.2",
"uuid": "^9.0.0",
"ws": "^8.12.1",
"yargs": "^17.7.0"
}
}