-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.85 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 1.85 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
68
69
70
71
72
{
"name": "lfc-cli",
"version": "0.4.0",
"description": "Command-line interface for Lifecycle — preview environments, services, and static sites",
"license": "Apache-2.0",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/GoodRxOSS/lifecycle-cli.git"
},
"keywords": [
"lifecycle",
"preview-environments",
"cli",
"kubernetes"
],
"packageManager": "pnpm@9.15.0",
"bin": {
"lfc": "./dist/index.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=20"
},
"scripts": {
"build": "tsup",
"dev": "tsx src/index.ts",
"generate:api": "rm -rf ./src/lib/generated && orval --config ./orval.config.ts && node ./scripts/fix-generated-imports.mjs",
"lint": "eslint .",
"format": "prettier \"**/*.{ts,js,mjs,cjs,json,md}\"",
"format:check": "pnpm format --check",
"format:write": "pnpm format --write",
"validate": "pnpm format:write && pnpm lint && pnpm typecheck",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"prepare": "husky"
},
"dependencies": {
"@clack/prompts": "^0.11.0",
"archiver": "^7.0.1",
"commander": "^14.0.0",
"ignore": "^7.0.5",
"js-yaml": "^4.2.0",
"jsonschema": "^1.5.0",
"picocolors": "^1.1.1"
},
"devDependencies": {
"@eslint/js": "^9.39.4",
"@ianvs/prettier-plugin-sort-imports": "^4.7.1",
"@types/archiver": "^6.0.3",
"@types/js-yaml": "^4.0.9",
"@types/node": "^24.0.0",
"dotenv": "^17.2.3",
"eslint": "^9",
"eslint-config-prettier": "^10.1.8",
"globals": "^17.7.0",
"husky": "^9.1.7",
"lint-staged": "^17.0.8",
"orval": "7.4.1",
"prettier": "3.6.2",
"tsup": "^8.5.0",
"tsx": "^4.20.0",
"typescript": "^5.8.0",
"typescript-eslint": "^8.63.0",
"vitest": "^3.2.0"
}
}