depflow 1.1.1 → 1.1.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.
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @author NetFeez <codefeez.dev@gmail.com>
2
+ * @author NetFeez <netfeez.dev@gmail.com>
3
3
  * @description Dependency utility.
4
4
  * @license Apache-2.0
5
5
  */
package/build/File.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @author NetFeez <codefeez.dev@gmail.com>
2
+ * @author NetFeez <netfeez.dev@gmail.com>
3
3
  * @description Utility to help with File operations.
4
4
  * @license Apache-2.0
5
5
  */
package/build/File.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @author NetFeez <codefeez.dev@gmail.com>
2
+ * @author NetFeez <netfeez.dev@gmail.com>
3
3
  * @description Utility to help with File operations.
4
4
  * @license Apache-2.0
5
5
  */
package/build/Git.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @author NetFeez <codefeez.dev@gmail.com>
2
+ * @author NetFeez <netfeez.dev@gmail.com>
3
3
  * @description Executes git commands.
4
4
  * @license Apache-2.0
5
5
  */
package/build/Git.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @author NetFeez <codefeez.dev@gmail.com>
2
+ * @author NetFeez <netfeez.dev@gmail.com>
3
3
  * @description Executes git commands.
4
4
  * @license Apache-2.0
5
5
  */
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @author NetFeez <codefeez.dev@gmail.com>
2
+ * @author NetFeez <netfeez.dev@gmail.com>
3
3
  * @description Utility for path fixing.
4
4
  * @license Apache-2.0
5
5
  */
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @author NetFeez <codefeez.dev@gmail.com>
2
+ * @author NetFeez <netfeez.dev@gmail.com>
3
3
  * @description Utility to validate dependencies.
4
4
  * @license Apache-2.0
5
5
  */
package/build/bin.d.ts CHANGED
@@ -1,6 +1,6 @@
1
1
  #!/usr/bin/env node
2
2
  /**
3
- * @author NetFeez <codefeez.dev@gmail.com>
3
+ * @author NetFeez <netfeez.dev@gmail.com>
4
4
  * @description Dependency Flow CLI.
5
5
  * @license Apache-2.0
6
6
  */
package/build/bin.js CHANGED
@@ -1,6 +1,6 @@
1
1
  #!/usr/bin/env node
2
2
  /**
3
- * @author NetFeez <codefeez.dev@gmail.com>
3
+ * @author NetFeez <netfeez.dev@gmail.com>
4
4
  * @description Dependency Flow CLI.
5
5
  * @license Apache-2.0
6
6
  */
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "depflow",
3
3
  "description": "is a simple dependency manager based on github repositories",
4
- "version": "1.1.1",
4
+ "version": "1.1.2",
5
5
  "main": "build/bin.js",
6
6
  "type": "module",
7
7
  "bin": {
@@ -9,8 +9,8 @@
9
9
  },
10
10
  "scripts": {
11
11
  "dev": "npx tsc --watch",
12
- "build": "npx tsc",
13
- "prepare": "npm run build"
12
+ "compile": "npx tsc",
13
+ "prepare": "npm run compile"
14
14
  },
15
15
  "license": "Apache-2.0",
16
16
  "repository": {
@@ -19,8 +19,8 @@
19
19
  },
20
20
  "author": {
21
21
  "name": "NetFeez",
22
- "email": "codefeez.dev@gmail.com",
23
- "url": "https://NetFeez-Labs.com"
22
+ "email": "netfeez.dev@gmail.com",
23
+ "url": "https://NetFeez.github.io"
24
24
  },
25
25
  "keywords": [
26
26
  "dependency",
@@ -33,10 +33,10 @@
33
33
  "README.md"
34
34
  ],
35
35
  "dependencies": {
36
- "vortez": "^5.0.0-dev.14"
36
+ "vortez": "^5.0.0"
37
37
  },
38
38
  "devDependencies": {
39
- "@types/node": "^24.10.1",
40
- "typescript": "^5.9.3"
39
+ "@types/node": "^25.6.0",
40
+ "typescript": "^6.0.2"
41
41
  }
42
42
  }