-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1.29 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
{
"name": "snail",
"private": true,
"scripts": {
"start": "electron . --dev-mode",
"test": "npm run build && playwright test -gv docker",
"type": "tsc --build src/tsconfig.json && tsc -p slug/shell/tsconfig.json && tsc -p slug/debugger/tsconfig.json && tsc -p slug/editor/tsconfig.json",
"build": "node utils/esbuild.js",
"release": "npm run check && node utils/publish-sdk.js && node utils/bundle-and-upload-slugs.js && node utils/package-and-upload.js",
"check": "npm run type && npm run build && playwright test --forbid-only --workers 1"
},
"version": "0.12.0-post",
"workspaces": [
"slug",
"slug/thumbnail_generator",
"slug/sdk",
"slug/node-pty",
"xterm.js"
],
"main": "./electron/index.js",
"author": "Joel Einbinder",
"devDependencies": {
"@playwright/test": "^1.47.2",
"@types/node": "^17.0.45",
"@types/rimraf": "^3.0.2",
"@types/sqlite3": "^3.1.8",
"@types/ws": "^8.2.3",
"electron-packager": "^17.1.1",
"esbuild": "^0.15.12",
"expect": "^27.4.6",
"get-port": "^5.1.1",
"pyodide": "^0.26.2",
"read": "^2.1.0",
"rimraf": "^3.0.2",
"typescript": "^4.5.5"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.29.2",
"electron": "^32.1.2",
"openai": "^4.33.0",
"sqlite3": "^5.1.7"
}
}