-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.19 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.19 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
{
"name": "vivarium-cli",
"version": "1.2.1",
"description": "Local dev stack manager — auto-allocates ports, manages Docker Compose services, generates .env files",
"type": "module",
"bin": {
"vivarium": "dist/cli.js"
},
"main": "dist/cli.js",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"prepublishOnly": "tsc",
"lint": "biome check",
"format": "biome check --write --unsafe",
"test": "biome check && vitest run",
"test:watch": "vitest"
},
"keywords": [
"dev",
"local",
"docker",
"compose",
"ports"
],
"author": "Niranjan Rajendran (https://github.com/niranjan94)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/niranjan94/vivarium.git"
},
"homepage": "https://vivarium.niranjan.io",
"bugs": {
"url": "https://github.com/niranjan94/vivarium/issues"
},
"engines": {
"node": ">=20"
},
"dependencies": {
"commander": "^13.1.0",
"yaml": "^2.8.2"
},
"devDependencies": {
"@biomejs/biome": "^2.4.4",
"@tsconfig/node24": "^24.0.4",
"@types/node": "^24.10.13",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
}
}