-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.56 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
{
"name": "envshare-cli",
"version": "1.3.2",
"description": "A cli to share your environment variables with your team quickly.",
"main": "./dist/esm/index.js",
"bin": {
"envshare": "./dist/esm/index.js",
"envshare-cli": "./dist/esm/index.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rimraf dist && npx tsc -b ./tsconfig.esm.json ./tsconfig.types.json",
"prettier": "npx prettier --write .",
"prepublishOnly": "npm run build"
},
"keywords": [
"envshare",
"cli",
".env",
"environment",
"variables",
"share"
],
"author": {
"name": "Angelo Walczak",
"email": "[email protected]",
"url": "https://github.com/K1NXZ"
},
"homepage": "https://github.com/K1NXZ/envshare-cli",
"repository": {
"type": "git",
"url": "https://github.com/K1NXZ/envshare-cli"
},
"license": "MIT",
"dependencies": {
"@commander-js/extra-typings": "^11.0.0",
"base-x": "^4.0.0",
"commander": "^11.0.0",
"copy-paste": "^1.5.3",
"detect-package-manager": "^3.0.1",
"inquirer": "^9.2.11",
"untildify": "^5.0.0"
},
"devDependencies": {
"@types/copy-paste": "^1.1.31",
"@types/inquirer": "^9.0.3",
"@types/node": "^20.8.2",
"rimraf": "^5.0.5",
"typescript": "^5.2.2"
},
"exports": {
".": {
"types": "./build/types/index.d.ts",
"import": "./build/esm/index.js",
"default": "./build/esm/index.js"
}
},
"files": [
"dist",
"LICENSE",
"README.md",
"package.json"
],
"type": "module"
}