Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
Latest commit
77 lines (77 loc) · 2.1 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 2.1 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
72
73
74
75
76
77
{
"name": "@plotdb/esh",
"version": "0.4.2",
"description": "esh \u2014 embeddable shell runtime for JavaScript. Shell syntax + virtual fs, runs in browser (OPFS persistence), Node, and workers.",
"type": "module",
"exports": {
".": {
"browser": "./dist/esh.js",
"default": "./src/node-entry.js"
},
"./base": "./src/base.js",
"./core": "./src/core.js",
"./remote": "./src/remote.js",
"./git": {
"browser": "./dist/esh-git.js",
"default": "./src/git-command.js"
},
"./iife": "./dist/esh.iife.js",
"./term": {
"browser": "./dist/esh-term.js"
},
"./term/iife": "./dist/esh-term.iife.js",
"./worker": "./dist/esh-worker.js"
},
"files": [
"dist",
"src"
],
"scripts": {
"build": "node tools/build.mjs",
"dev": "vite --port 5199",
"start": "npx server -r web -o true",
"test": "node test/async-core.mjs && node test/remote.mjs && node test/git.mjs && node test/write-verify.mjs && node test/cmd-edges.mjs && node tools/check-bundle.mjs",
"test:pages": "echo 'vite dev: /web/vitedev/m2.html /web/vitedev/m25.html; dist \u975c\u614b: web/static/bundle-test.html web/static/async-test.html' && exit 0"
},
"keywords": [
"shell",
"browser-shell",
"embeddable",
"virtual-fs",
"opfs",
"zenfs",
"posix",
"bash",
"interpreter"
],
"license": "MIT",
"dependencies": {
"@xterm/addon-fit": "^0.11.0",
"@xterm/xterm": "^6.0.0",
"@zenfs/core": "^2.6.2",
"@zenfs/dom": "^1.2.10",
"bash-parser": "^0.5.0",
"fast-glob": "^3.3.2",
"isomorphic-git": "^1.41.3",
"memfs": "^4.68.0",
"path-browserify": "^1.0.1",
"shelljs": "^0.10.0"
},
"devDependencies": {
"@plotdb/guides": "github:plotdb/guides#master",
"@zbryikt/template": "^2.4.2",
"assert": "^2.1.0",
"buffer": "^6.0.3",
"esbuild": "^0.28.2",
"events": "^3.3.0",
"fedep": "^1.7.6",
"stream-browserify": "^3.0.0",
"util": "^0.12.5",
"vite": "^8.2.1",
"vite-plugin-node-polyfills": "^0.28.0"
},
"unpkg": "dist/esh.iife.js",
"volta": {
"node": "24.19.0"
}
}