-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.49 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.49 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
{
"name": "@basestack/flags-cli",
"version": "1.0.2",
"description": "CLI tool for Basestack Feature Flags — scan codebases for flag references and more",
"author": "Basestack <hello@basestack.co>",
"repository": "https://github.com/basestack-co/basestack-flags-cli",
"type": "module",
"exports": {
".": {
"import": "./dist/bin.js"
}
},
"bin": {
"flags-cli": "dist/bin.js"
},
"files": [
"dist/",
"README.md",
"LICENSE"
],
"scripts": {
"dev": "bun run --watch src/bin.tsx code-refs --help",
"start": "bun run src/bin.tsx",
"build": "tsdown",
"build:watch": "tsdown --watch",
"clean": "rm -rf node_modules dist",
"update:deps": "bun update -i",
"lint": "bunx biome check .",
"format": "bunx biome format --write .",
"check": "bunx biome check --write .",
"typecheck": "bunx tsc --noEmit",
"test": "bunx vitest run --passWithNoTests",
"test:watch": "bunx vitest watch",
"prepublishOnly": "bun run lint && bun run typecheck && bun run test && bun run build"
},
"license": "MIT",
"packageManager": "bun@1.3.12",
"engines": {
"node": ">=18.17.0"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@biomejs/biome": "^2.4.14",
"@types/bun": "1.3.13",
"@types/react": "^19.2.14",
"tsdown": "^0.21.10",
"typescript": "^6.0.3",
"vitest": "^4.1.5"
},
"dependencies": {
"@opentui/core": "^0.1.107",
"@opentui/react": "^0.1.107",
"react": "^19.2.6"
}
}