-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.57 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.57 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
{
"name": "opencontainers",
"version": "0.1.4",
"type": "module",
"description": "Clean-room browser-native Node-like runtime foundation for OpenContainers.",
"keywords": [
"webcontainer",
"webcontainers",
"browser-runtime",
"node-runtime",
"nodejs",
"npm",
"virtual-filesystem",
"service-worker",
"sandbox",
"repl",
"playground",
"javascript"
],
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/Welfordian/OpenContainers.git"
},
"bugs": {
"url": "https://github.com/Welfordian/OpenContainers/issues"
},
"homepage": "https://github.com/Welfordian/OpenContainers#readme",
"publishConfig": {
"access": "public"
},
"files": [
"README.md",
"packages/adapters/src/*.js",
"packages/embed/src/*.js",
"packages/fs/src/*.js",
"packages/kernel/src/*.js",
"packages/npm/src/*.js",
"packages/runtime-node/src/*.js",
"packages/runtime-node/src/builtins/*.js",
"packages/shell/src/*.js"
],
"exports": {
".": "./packages/embed/src/webcontainer-compatible.js",
"./webcontainer": "./packages/embed/src/webcontainer-compatible.js",
"./packages/embed/src/webcontainer-compatible.js": "./packages/embed/src/webcontainer-compatible.js",
"./packages/embed/dist/webcontainer-compatible.js": "./packages/embed/src/webcontainer-compatible.js"
},
"scripts": {
"compat:docs": "node scripts/generate-compat-doc.mjs",
"test": "node --test tests/*.test.mjs",
"test:milestones": "node --test tests/milestones.test.mjs"
},
"engines": {
"node": ">=26"
}
}