envlink 0.0.1 → 1.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of envlink might be problematic. Click here for more details.
- package/LICENSE +21 -0
- package/README.md +62 -0
- package/commands.md +134 -0
- package/dist/index.js +118 -0
- package/package.json +56 -6
- package/index.js +0 -1
package/package.json
CHANGED
|
@@ -1,19 +1,69 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "envlink",
|
|
3
|
-
"version": "
|
|
4
|
-
"description": "",
|
|
5
|
-
"main": "index.js",
|
|
3
|
+
"version": "1.0.2",
|
|
4
|
+
"description": "Secure and anonymous environment file sharing CLI",
|
|
5
|
+
"main": "./dist/index.js",
|
|
6
|
+
"bin": {
|
|
7
|
+
"envlink": "./dist/index.js"
|
|
8
|
+
},
|
|
6
9
|
"scripts": {
|
|
7
|
-
"
|
|
10
|
+
"dev": "NODE_ENV=development tsx -r tsconfig-paths/register --watch ./src/index.ts",
|
|
11
|
+
"test": "tsx -r tsconfig-paths/register --interactive ./src/index.ts",
|
|
12
|
+
"start": "node ./dist/index.js",
|
|
13
|
+
"update-pkg-meta": "sh scripts/update-pkg.sh",
|
|
14
|
+
"build": "sh ./scripts/build.sh"
|
|
8
15
|
},
|
|
9
16
|
"repository": {
|
|
10
17
|
"type": "git",
|
|
11
18
|
"url": "git+https://github.com/AbabilCore/envlink.git"
|
|
12
19
|
},
|
|
13
|
-
"keywords": [
|
|
20
|
+
"keywords": [
|
|
21
|
+
"cli",
|
|
22
|
+
"typescript",
|
|
23
|
+
"envlink",
|
|
24
|
+
"environment",
|
|
25
|
+
"env",
|
|
26
|
+
"dotenv",
|
|
27
|
+
"share",
|
|
28
|
+
"secure",
|
|
29
|
+
"anonymous",
|
|
30
|
+
"password-protected",
|
|
31
|
+
"expiration",
|
|
32
|
+
"devtools"
|
|
33
|
+
],
|
|
34
|
+
"author": "Ababil Hossain <hi@ababilspark.com>",
|
|
35
|
+
"license": "MIT",
|
|
14
36
|
"type": "commonjs",
|
|
15
37
|
"bugs": {
|
|
16
38
|
"url": "https://github.com/AbabilCore/envlink/issues"
|
|
17
39
|
},
|
|
18
|
-
"homepage": "https://github.com/AbabilCore/envlink
|
|
40
|
+
"homepage": "https://github.com/AbabilCore/envlink",
|
|
41
|
+
"engines": {
|
|
42
|
+
"node": ">=18.0.0"
|
|
43
|
+
},
|
|
44
|
+
"files": [
|
|
45
|
+
"dist/index.js",
|
|
46
|
+
"README.md",
|
|
47
|
+
"commands.md",
|
|
48
|
+
"LICENSE"
|
|
49
|
+
],
|
|
50
|
+
"devDependencies": {
|
|
51
|
+
"@biomejs/biome": "2.3.7",
|
|
52
|
+
"@types/inquirer": "^9.0.9",
|
|
53
|
+
"@types/node": "^24.13.6",
|
|
54
|
+
"cli-table3": "^0.6.5",
|
|
55
|
+
"colors": "^1.4.0",
|
|
56
|
+
"commander": "^14.0.2",
|
|
57
|
+
"figlet": "^1.9.4",
|
|
58
|
+
"inquirer": "^8.2.7",
|
|
59
|
+
"nanospinner": "^1.2.2",
|
|
60
|
+
"rimraf": "^6.0.1",
|
|
61
|
+
"tsconfig-paths": "^4.2.0",
|
|
62
|
+
"tsup": "^8.5.0",
|
|
63
|
+
"tsx": "^4.20.6",
|
|
64
|
+
"typescript": "^5.9.3"
|
|
65
|
+
},
|
|
66
|
+
"allowScripts": {
|
|
67
|
+
"esbuild": true
|
|
68
|
+
}
|
|
19
69
|
}
|
package/index.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
// just for secure the package name
|