-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 816 Bytes
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 816 Bytes
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
{
"name": "onenv",
"version": "0.10.2",
"description": "1Password-backed environment variable manager. Replaces .env files.",
"author": "Jurre-Jan Smit",
"type": "module",
"bin": {
"onenv": "./dist/cli.js"
},
"scripts": {
"build": "tsc && chmod +x dist/cli.js",
"build:binaries": "bun run scripts/build-binaries.ts",
"dev": "tsx watch src/cli.ts",
"start": "node dist/cli.js",
"test": "vitest run src",
"lint": "biome check src/",
"lint:fix": "biome check --write src/"
},
"devDependencies": {
"@biomejs/biome": "^2.4.14",
"@types/node": "^25.6.1",
"tsx": "^4.21.0",
"typescript": "^6.0.3",
"vitest": "^4.1.5"
},
"dependencies": {
"chalk": "^5.6.2",
"@clack/prompts": "^1.3.0",
"commander": "^14.0.3",
"ora": "^9.4.0"
}
}