-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.52 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.52 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": "bye-bye-flag",
"version": "0.1.4",
"private": true,
"description": "Remove stale feature flags from codebases using AI",
"license": "MIT",
"keywords": [
"feature-flags",
"cleanup",
"ai",
"posthog",
"cli"
],
"repository": {
"type": "git",
"url": "git+https://github.com/RelevanceAI/bye-bye-flag.git"
},
"type": "module",
"bin": {
"bye-bye-flag": "src/cli.ts"
},
"files": [
"src",
"prompts",
"examples",
"README.md",
"LICENSE"
],
"scripts": {
"start": "node src/cli.ts",
"test-setup": "node src/test-setup.ts",
"fetch:posthog": "node src/fetchers/posthog/cli.ts",
"typecheck": "tsc --noEmit",
"lint": "eslint src/",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "vitest run",
"test:watch": "vitest",
"prepare": "husky"
},
"lint-staged": {
"*.{ts,js}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md,yml,yaml}": [
"prettier --write"
]
},
"dependencies": {
"chalk": "^5.4.1",
"execa": "^9.5.3",
"uuid": "^11.1.0",
"zod": "^3.24.4"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^22.15.21",
"@types/uuid": "^10.0.0",
"eslint": "^10.0.0",
"eslint-config-prettier": "^10.1.8",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"prettier": "^3.8.1",
"typescript": "^5.8.3",
"typescript-eslint": "^8.55.0",
"vitest": "^4.0.18"
},
"engines": {
"node": ">=24.0.0"
}
}