-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.4 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.4 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
{
"name": "loadenv-cli",
"version": "1.0.1",
"description": "Use Vite's `loadEnv` on the command-line",
"license": "MIT",
"author": "Jan T. Sott",
"repository": {
"type": "git",
"url": "git+https://github.com/idleberg/loadenv-cli.git"
},
"keywords": [
"environment variables",
"dotenv",
"load environment",
"vite"
],
"type": "module",
"bin": {
"loadenv": "./bin/cli.mjs"
},
"engines": {
"node": "^20.19.0 || >=22.12.0"
},
"files": [
"bin/",
"LICENSE",
"README.md"
],
"scripts": {
"build": "tsdown",
"dev": "tsdown --watch",
"lint": "concurrently --prefix-colors blue,green,magenta npm:lint:*",
"lint:biome": "biome check",
"lint:e18e": "e18e-cli analyze",
"prepack": "npm run build",
"publish:jsr": "deno publish",
"publish:npm": "np",
"test": "vitest run"
},
"dependencies": {
"commander": "^14.0.3",
"kleur": "^4.1.5",
"vite": "^8.0.2"
},
"devDependencies": {
"@commitlint/cli": "^20.5.0",
"@commitlint/config-conventional": "^20.5.0",
"@idleberg/configs": "^0.4.2",
"@types/node": "^24.12.0",
"@vitest/coverage-v8": "^4.1.1",
"concurrently": "^9.2.1",
"np": "^11.0.2",
"tsdown": "^0.21.4",
"vitest": "^4.1.1"
},
"pnpm": {
"onlyBuiltDependencies": [
"lefthook"
]
},
"packageManager": "[email protected]+sha512.a706938f0e89ac1456b6563eab4edf1d1faf3368d1191fc5c59790e96dc918e4456ab2e67d613de1043d2e8c81f87303e6b40d4ffeca9df15ef1ad567348f2be"
}