komodo-cli 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/README.md +59 -0
- package/dist/index.js +43106 -0
- package/package.json +45 -0
package/package.json
ADDED
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "komodo-cli",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "The simple way to set up your project. Just say what you want to build.",
|
|
5
|
+
"bin": {
|
|
6
|
+
"komodo": "./dist/index.js"
|
|
7
|
+
},
|
|
8
|
+
"main": "./dist/index.js",
|
|
9
|
+
"scripts": {
|
|
10
|
+
"build": "tsup && chmod +x dist/index.js",
|
|
11
|
+
"dev": "tsup src/index.ts --format esm --watch",
|
|
12
|
+
"typecheck": "tsc --noEmit",
|
|
13
|
+
"clean": "rm -rf dist",
|
|
14
|
+
"prepublishOnly": "pnpm build"
|
|
15
|
+
},
|
|
16
|
+
"files": [
|
|
17
|
+
"dist"
|
|
18
|
+
],
|
|
19
|
+
"keywords": [
|
|
20
|
+
"package-manager",
|
|
21
|
+
"intent",
|
|
22
|
+
"ai",
|
|
23
|
+
"environment",
|
|
24
|
+
"python",
|
|
25
|
+
"node",
|
|
26
|
+
"cli"
|
|
27
|
+
],
|
|
28
|
+
"author": "Romir Patel",
|
|
29
|
+
"license": "MIT",
|
|
30
|
+
"repository": {
|
|
31
|
+
"type": "git",
|
|
32
|
+
"url": "https://github.com/romirthedev/komodo"
|
|
33
|
+
},
|
|
34
|
+
"dependencies": {
|
|
35
|
+
"commander": "^12.0.0",
|
|
36
|
+
"chalk": "^5.3.0",
|
|
37
|
+
"ora": "^8.0.1",
|
|
38
|
+
"boxen": "^7.1.1",
|
|
39
|
+
"open": "^10.0.3"
|
|
40
|
+
},
|
|
41
|
+
"devDependencies": {
|
|
42
|
+
"@komodo/core": "workspace:*",
|
|
43
|
+
"@komodo/ui": "workspace:*"
|
|
44
|
+
}
|
|
45
|
+
}
|