-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.53 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.53 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
{
"name": "envscope",
"version": "0.2.0",
"description": "Analyze a repo (single-package or monorepo) and determine which environment variables each app actually requires through its dependency graph.",
"keywords": [
"monorepo",
"env",
"environment-variables",
"cli",
"ast",
"turborepo",
"pnpm",
"dependency-graph"
],
"homepage": "https://github.com/MohammadShehadeh/envscope#readme",
"bugs": {
"url": "https://github.com/MohammadShehadeh/envscope/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MohammadShehadeh/envscope.git"
},
"license": "MIT",
"author": "Mohammad Shehadeh",
"packageManager": "pnpm@10.30.3",
"type": "commonjs",
"bin": {
"envscope": "dist/cli.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"dev": "tsx src/cli.ts",
"start": "node dist/cli.js",
"demo": "tsx src/cli.ts analyze --cwd example/sample-monorepo",
"demo:find": "tsx src/cli.ts find STRIPE_SECRET --cwd example/sample-monorepo",
"test": "vitest run",
"typecheck": "tsc -p tsconfig.json --noEmit",
"prepublishOnly": "pnpm run build"
},
"engines": {
"node": ">=20"
},
"dependencies": {
"picocolors": "^1.1.1",
"ts-morph": "^28.0.0",
"yaml": "^2.9.0"
},
"devDependencies": {
"@types/node": "^26.0.0",
"tsx": "^4.22.4",
"typescript": "^6.0.3",
"vitest": "^4.1.9"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild"
]
}
}