-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.36 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.36 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
{
"name": "env-file-manager",
"version": "0.1.3",
"description": "Local-first dashboard for browsing .env files across apps, repos, and monorepos.",
"type": "module",
"bin": {
"env-file-manager": "./bin/env-file-manager.js"
},
"scripts": {
"prepare": "npm run build",
"start": "node ./bin/env-file-manager.js",
"scan": "node ./bin/env-file-manager.js scan",
"doctor": "node ./bin/env-file-manager.js doctor",
"test": "npm run build && node --test dist/test/*.js",
"build": "node -e \"import('fs').then(f => f.rmSync('./dist', { recursive: true, force: true }))\" && tsc -p tsconfig.json && node -e \"import('fs').then(f => { const src = './src/ui'; const dst = './dist/src/ui'; f.cpSync(src, dst, { recursive: true }); })\""
},
"keywords": [
"env",
"secrets",
"dotenv",
"local-first",
"monorepo"
],
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/Anil567849/env-file-manager.git"
},
"bugs": {
"url": "https://github.com/Anil567849/env-file-manager/issues"
},
"homepage": "https://github.com/Anil567849/env-file-manager#readme",
"engines": {
"node": ">=18.18"
},
"devDependencies": {
"@types/node": "^22.15.18",
"typescript": "^5.7.3"
},
"files": [
"bin",
"dist/src",
"src",
"HOW-IT-WORKS.md",
"README.md"
]
}