-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.56 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.56 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
{
"name": "@voidrot/composable",
"version": "0.7.1",
"description": "Reusable Docker Compose fragments and CLI for composing services",
"main": "./dist/cli/index.js",
"types": "./dist/cli/index.d.ts",
"bin": {
"composable": "./dist/cli/index.js"
},
"exports": {
".": {
"types": "./dist/cli/index.d.ts",
"default": "./dist/cli/index.js"
}
},
"files": [
"dist/cli",
"README.md"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"build:registry": "tsx src/registry/build.ts",
"validate": "tsx scripts/validate.ts",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"prepublishOnly": "npm run build && npm run typecheck && npm test",
"cli": "tsx src/cli/index.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/voidrot/composable.git"
},
"keywords": [
"docker",
"docker-compose",
"cli",
"fragments"
],
"author": "Voidrot",
"license": "MIT",
"type": "module",
"bugs": {
"url": "https://github.com/voidrot/composable/issues"
},
"homepage": "https://github.com/voidrot/composable#readme",
"engines": {
"node": ">=20"
},
"dependencies": {
"commander": "^14.0.3",
"dotenv": "^17.4.2",
"fs-extra": "^11.3.4",
"glob": "^13.0.6",
"yaml": "^2.8.3"
},
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/glob": "^8.1.0",
"@types/node": "^25.6.0",
"ajv": "^8.18.0",
"ajv-formats": "^3.0.1",
"ts-node": "^10.9.2",
"tsx": "^4.21.0",
"typescript": "^6.0.3",
"vitest": "^4.1.4"
}
}