-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
70 lines (70 loc) · 1.84 KB
/
package.json
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
65
66
67
68
69
70
{
"name": "@devmy/dotenv2shell",
"version": "1.1.0",
"description": "A CLI lets you easily load environment variables from a `.env` file into your current shell session. It provides flexibility through various options and supports both zsh and bash.",
"main": "bin/index.mjs",
"bin": "bin/index.mjs",
"scripts": {
"build": "tsup",
"lint": "eslint 'src/**/*.ts'",
"lint:fix": "eslint 'src/**/*.ts' --fix",
"release": "semantic-release"
},
"keywords": [
"dotenv",
"environment",
"config",
"dotenv-run",
".env.vault",
"vault",
"dotenv_key",
"bash",
"shell",
"zsh"
],
"license": "MIT",
"author": ".devmy",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/acadevmy/dotenv2shell.git"
},
"bugs": {
"url": "https://github.com/acadevmy/dotenv2shell/issues"
},
"dependencies": {
"@dotenv-run/core": "^1.3.5",
"yargs": "^17.7.2"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "github:semantic-release/git",
"@semantic-release/npm": "^12.0.1",
"@semantic-release/release-notes-generator": "^14.0.0",
"@types/node": "^20.14.0",
"@types/yargs": "^17.0.32",
"@typescript-eslint/eslint-plugin": "^7.11.0",
"eslint": "8.57.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-simple-import-sort": "^12.1.0",
"prettier": "^3.2.5",
"semantic-release": "^24.0.0",
"tsup": "^8.1.0",
"typescript": "^5.3.3"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=20.10.0",
"pnpm": ">=9.15.0"
},
"pnpm": {
"executionEnv": {
"nodeVersion": "20.10.0"
}
}
}