forked from blackboardsh/colab
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.19 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 2.19 KB
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
{
"private": true,
"name": "colab",
"version": "0.14.11-canary.3",
"description": "A hybrid browser + code editor for deep work",
"main": "index.js",
"scripts": {
"setup": "bun run scripts/setup-deps.ts",
"build:dev": "bun setup && electrobun build",
"dev": "bun setup && electrobun dev",
"build:canary": "electrobun build --env=canary",
"build:stable": "electrobun build --env=stable",
"docs:dev": "cd documentation && bun install && bun start",
"docs:build": "cd documentation && bun install && bun run build",
"docs:serve": "cd documentation && bun run serve",
"build:docs:release": "cd documentation && bun run build",
"push:canary": "npm version prerelease --preid=canary && git push origin main --tags",
"push:patch": "npm version prepatch --preid=canary && git push origin main --tags",
"push:minor": "npm version preminor --preid=canary && git push origin main --tags",
"push:major": "npm version premajor --preid=canary && git push origin main --tags",
"push:stable": "npm version patch && git push origin main --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/blackboardsh/colab.git"
},
"keywords": [
"browser",
"code",
"editor",
"nocode"
],
"author": "Blackboard Technologies Inc.",
"license": "MIT",
"engines": {
"node": ">=18",
"bun": ">=1.0"
},
"bugs": {
"url": "https://github.com/blackboardsh/colab/issues"
},
"homepage": "https://github.com/blackboardsh/colab#readme",
"dependencies": {
"@webflow/webflow-cli": "^1.1.1",
"@xterm/addon-fit": "^0.10.0",
"@xterm/addon-search": "^0.15.0",
"@xterm/addon-web-links": "^0.11.0",
"@xterm/addon-webgl": "^0.18.0",
"@xterm/xterm": "^5.5.0",
"ansi-to-html": "^0.7.2",
"electrobun": "1.18.1",
"esbuild": "^0.25.12",
"esbuild-monaco-editor-plugin": "^0.1.1",
"esbuild-plugin-solid": "^0.5.0",
"fs-extra": "^11.2.0",
"goldfishdb": "^0.1.3",
"mixpanel": "^0.18.0",
"monaco-editor": "0.52.0",
"simple-git": "^3.22.0",
"solid-js": "^1.7.5",
"tailwindcss": "^3.4.3",
"webflow-api": "^1.3.1"
},
"devDependencies": {
"@axe-core/playwright": "^4.10.0",
"@playwright/test": "^1.48.0",
"@types/bun": "^1.1.0",
"happy-dom": "^15.0.0",
"typescript": "^5.4.5"
}
}