-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
82 lines (82 loc) · 2.28 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
76
77
78
79
80
81
82
{
"name": "chieapp",
"version": "0.0.1-dev",
"main": "dist/gui-main.js",
"description": "An extensible desktop app for large language models like ChatGPT and New Bing",
"bin": {
"chie-cli": "dist/cli-main.js"
},
"build": {
"appId": "org.chie.chie",
"productName": "Chie",
"copyright": "Copyright © 2023 Cheng. All rights reserved.",
"unpackDir": "assets/icons",
"ignore": [
"assets/build"
],
"entitlements": "assets/build/entitlements.plist",
"icons": {
"mac": "assets/build/icon-dev.icns",
"win": "assets/build/icon-dev.ico"
}
},
"scripts": {
"prepack": "node types/generate-package-json.js && tsc",
"start": "yode node_modules/ts-node/dist/bin.js src/gui-main.ts",
"start-cli": "yode node_modules/ts-node/dist/bin.js src/cli-main.ts",
"lint": "eslint --ignore-path .gitignore .",
"test": "ts-node test/run.ts",
"test-ui": "yode node_modules/ts-node/dist/bin.js test-ui/run.ts",
"fontello": "fontello-cli open --config assets/view/fontello.json",
"build-types": "",
"build": "yackage build out",
"dist": "yackage dist out"
},
"license": "GPL-3.0-or-later",
"homepage": "https://chie.app",
"repository": {
"type": "git",
"url": "https://github.com/chie/chie.git"
},
"bugs": {
"url": "https://github.com/chie/chie/issues"
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"ejs": "3.1.9",
"eventsource-parser": "0.1.0",
"fetch-yode": "1.x",
"fs-extra": "11.1.0",
"gui": "0.14.0",
"highlight.js": "11.7.0",
"html-escaper": "3.0.3",
"marked": "4.3.0",
"nanospinner": "1.1.0",
"open": "6.4.0",
"queue": "6.0.2",
"sanitize-html": "2.10.0",
"semantic-compare": "1.0.2",
"typed-signals": "2.5.0",
"ws": "8.13.0"
},
"devDependencies": {
"@types/ejs": "3.1.2",
"@types/html-escaper": "3.0.0",
"@types/marked": "4.0.8",
"@types/mocha": "10.0.1",
"@types/node": "18.x",
"@types/sanitize-html": "2.9.0",
"@typescript-eslint/eslint-plugin": "5.55.0",
"@typescript-eslint/parser": "5.55.0",
"chai": "4.3.7",
"eslint": "8.36.0",
"fontello-cli": "0.6.2",
"mocha": "10.2.0",
"tempy": "1.0.1",
"ts-node": "10.9.1",
"typescript": "5.0.2",
"yackage": "0.9.x"
}
}