-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.11 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.11 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
{
"name": "dev-compose",
"version": "1.0.0",
"description": "A command-line tool for managing portable development environments using Docker.",
"main": "dist/main.js",
"bin": {
"dev": "./dist/main.js"
},
"dependencies": {
"colors": "^1.4.0",
"js-yaml": "^3.13.1",
"moment": "^2.24.0",
"yargs": "^17.7.2"
},
"devDependencies": {
"@tsconfig/node18": "^18.2.0",
"@types/colors": "^1.1.3",
"@types/js-yaml": "^3.12.2",
"@types/node": "^13.7.0",
"@types/yargs": "^17.0.24",
"del": "^5.1.0",
"pkg": "^5.8.1",
"typescript": "^5.1.6"
},
"scripts": {
"build": "tsc --build",
"build.watch": "tsc --build --watch",
"package": "pkg ."
},
"author": "Glenn Schmidt <glenn@codeacious.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/CodeaciousAU/dev-compose.git"
},
"engines": {
"node": ">=18.0.0"
},
"pkg": {
"scripts": "dist/**/*.js",
"targets": [
"node18-linux-x64",
"node18-macos-arm64",
"node18-macos-x64",
"node18-win-x64"
],
"outputPath": "dist"
}
}