-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 865 Bytes
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 865 Bytes
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
{
"name": "@ohcn/care",
"version": "0.3.0",
"description": "CLI to bootstrap and manage a full local CARE development environment",
"type": "module",
"bin": {
"care": "dist/cli.js"
},
"files": [
"dist",
"src"
],
"engines": {
"node": ">=18"
},
"scripts": {
"build": "tsup",
"dev": "tsx src/cli.ts",
"start": "node dist/cli.js",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run build"
},
"keywords": [
"care",
"ohcnetwork",
"bootstrap",
"cli"
],
"license": "MIT",
"publishConfig": {
"access": "public"
},
"dependencies": {
"@clack/prompts": "^0.7.0",
"commander": "^12.1.0",
"execa": "^9.3.0",
"picocolors": "^1.0.1"
},
"devDependencies": {
"@types/node": "^22.5.0",
"tsup": "^8.2.4",
"tsx": "^4.19.0",
"typescript": "^5.5.4"
}
}