denvig 0.1.0

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.
package/LICENCE ADDED
@@ -0,0 +1,8 @@
1
+ The MIT License (MIT)
2
+ Copyright © 2025 Marc Qualie, https://marcqualie.com
3
+
4
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
5
+
6
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
7
+
8
+ THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,72 @@
1
+ # Denvig - Developer Environment Invigorator.
2
+
3
+ Denvig is a concept of simplifying development environments across multiple languages and frameworks by creating a small
4
+ set of consistent wrappers to avoid muscle memory and configuration headaches.
5
+
6
+
7
+
8
+ ## Goals
9
+
10
+ - [ ] CLI tool to simplify environment setup
11
+ - [ ] YAML configuration at ~/.denvig.yml
12
+ - [ ] Per project configuration via ./denvig.yml
13
+ - [ ] Consistent API for all languages/frameworks
14
+
15
+
16
+
17
+ ## Installation
18
+
19
+ ### Binary
20
+
21
+ Prebuilt binaries can be downloaded from the [releases page](https://github.com/marcqualie/denvig/releases).
22
+
23
+
24
+ ### NPM
25
+
26
+ You can install the CLI tool globally using npm:
27
+
28
+ ```shell
29
+ npm install -g denvig
30
+ ```
31
+
32
+ After installation, the `denvig` command will be available in your terminal.
33
+
34
+
35
+
36
+ ## Commands
37
+
38
+
39
+ ### Run
40
+
41
+ Execites an action inside the project. Defaults are detected for common languages/frameworks, but you can also
42
+ specify your own actions in the `denvig.yml` file.
43
+
44
+ ```shell
45
+ denvig run build
46
+ denvig run install
47
+ denvig run test
48
+ denvig run dev
49
+ ```
50
+
51
+
52
+
53
+ ## Languages / Frameworks
54
+
55
+ There is a set of core languages and frameworks that Denvig will support out of the box. Any language or framework
56
+ can be supported by using the per project configs.
57
+
58
+ - [ ] Deno
59
+ - [ ] Node.js / NextJS / Vite
60
+ - [ ] Ruby / Rails
61
+ - [ ] Python / Pip
62
+
63
+
64
+
65
+ ## Building from source
66
+
67
+ You can build a fresh binary from source instead of using the provided methods above
68
+
69
+ ```shell
70
+ deno task build
71
+ cp dist/denvig /usr/local/bin/denvig
72
+ ```
package/dist/denvig ADDED
Binary file
package/package.json ADDED
@@ -0,0 +1,36 @@
1
+ {
2
+ "name": "denvig",
3
+ "version": "0.1.0",
4
+ "license": "MIT",
5
+ "description": "A CLI tool to consistently manage cross-discipline projects",
6
+ "bin": {
7
+ "denvig": "./dist/denvig"
8
+ },
9
+ "files": [
10
+ "dist/denvig",
11
+ "LICENSE",
12
+ "README.md"
13
+ ],
14
+ "scripts": {
15
+ "build": "deno task build",
16
+ "prepublishOnly": "npm run build"
17
+ },
18
+ "dependencies": {
19
+ "zod": "^4.0.14"
20
+ },
21
+ "engines": {
22
+ "deno": ">=2.4",
23
+ "node": ">=22"
24
+ },
25
+ "repository": {
26
+ "type": "git",
27
+ "url": "git+https://github.com/marcqualie/denvig.git"
28
+ },
29
+ "keywords": [
30
+ "cli",
31
+ "deno",
32
+ "developer-tools",
33
+ "productivity",
34
+ "typescript"
35
+ ]
36
+ }