-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.13 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.13 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
{
"name": "docker2wslc",
"version": "0.2.0",
"description": "Translate Docker commands and Compose files to wslc, the native WSL container runtime on Windows 11",
"type": "module",
"bin": {
"docker2wslc": "src/cli.js"
},
"exports": {
".": "./src/translate.js",
"./compose": "./src/compose.js",
"./rules.json": "./rules.json"
},
"files": [
"src/",
"rules.json",
"README.md",
"LICENSE"
],
"scripts": {
"test": "node --test 'test/**/*.test.js'",
"prepublishOnly": "node --test 'test/**/*.test.js'"
},
"keywords": [
"docker",
"wsl",
"wslc",
"wsl2",
"containers",
"windows",
"compose",
"docker-compose",
"devcontainer",
"docker-desktop-alternative",
"cli"
],
"homepage": "https://wslcontainers.com",
"repository": {
"type": "git",
"url": "git+https://github.com/ylwl1997/docker2wslc.git",
"directory": "packages/cli"
},
"bugs": {
"url": "https://github.com/ylwl1997/docker2wslc/issues"
},
"license": "MIT",
"author": "WSL Containers",
"engines": {
"node": ">=18"
},
"dependencies": {
"yaml": "^2.5.0"
}
}