-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
92 lines (92 loc) · 2.83 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
83
84
85
86
87
88
89
90
91
92
{
"name": "acorn",
"displayName": "Acorn",
"author": {
"name": "Acorn Labs, Inc.",
"email": "info@acorn.io",
"url": "https://acorn.io"
},
"private": true,
"version": "v0.10.0-rc4",
"scripts": {
"build": "next build --no-lint",
"build:electron": "next build --no-lint && node electron/build.mjs",
"pkg": "node electron/build.mjs",
"debug": "node --inspect server.mjs",
"dev": "node server.mjs",
"dev:electron": "electron .",
"lint": "next lint",
"format": "prettier --write .",
"start": "cross-env NODE_ENV='production' node server.mjs",
"postinstall": "node scripts/install-binary.mjs"
},
"main": "electron/main.mjs",
"dependencies": {
"@gptscript-ai/gptscript": "github:gptscript-ai/node-gptscript#1cf71a66d0ca7cffe98343bf672f54a6a84d9ed0",
"@monaco-editor/react": "^4.6.0",
"@nextui-org/button": "2.0.32",
"@nextui-org/code": "2.0.28",
"@nextui-org/dropdown": "2.1.24",
"@nextui-org/input": "2.2.0",
"@nextui-org/kbd": "2.0.29",
"@nextui-org/link": "2.0.30",
"@nextui-org/navbar": "2.0.31",
"@nextui-org/react": "2.4.6",
"@nextui-org/snippet": "2.0.36",
"@nextui-org/switch": "2.0.29",
"@nextui-org/system": "2.1.0",
"@nextui-org/theme": "2.2.9",
"@react-aria/ssr": "^3.9.2",
"@react-aria/visually-hidden": "^3.8.10",
"@tailwindcss/typography": "^0.5.13",
"@types/archiver": "^6.0.2",
"@types/node": "20.5.7",
"@types/react": "18.2.21",
"@types/react-dom": "18.2.7",
"archiver": "^7.0.1",
"autoprefixer": "10.4.19",
"clsx": "^2.0.0",
"dotenv": "^16.4.5",
"doubly-linked-list": "^1.0.6",
"electron-log": "^5.1.7",
"eslint-config-next": "14.2.1",
"fix-path": "^4.0.0",
"framer-motion": "^11.1.1",
"fuse.js": "^7.0.0",
"get-port-please": "^3.1.2",
"intl-messageformat": "^10.5.0",
"lodash": "^4.17.21",
"next": "14.2.1",
"next-themes": "^0.2.1",
"open": "^10.1.0",
"postcss": "8.4.38",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "^7.51.5",
"react-icons": "^5.1.0",
"react-json-tree": "^0.19.0",
"react-markdown": "^9.0.1",
"react-svg": "^16.1.34",
"rehype-external-links": "^3.0.0",
"remark-gfm": "^4.0.0",
"socket.io": "^4.7.5",
"socket.io-client": "^4.7.5",
"tailwind-variants": "^0.1.20",
"tailwindcss": "3.4.3",
"typescript": "^5.5.4",
"typescript-collections": "^1.3.3",
"use-file-picker": "^2.1.2"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^8.1.0",
"@typescript-eslint/parser": "^8.1.0",
"concurrently": "^8.2.2",
"cross-env": "^7.0.3",
"electron": "^31.3.1",
"electron-builder": "^24.13.3",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.2.1"
}
}