@freecodecamp/universe-cli 0.9.0 → 0.10.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/dist/index.cjs +17204 -25798
- package/package.json +10 -8
- package/dist/index.js +0 -3457
package/package.json
CHANGED
|
@@ -1,14 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@freecodecamp/universe-cli",
|
|
3
|
-
"version": "0.
|
|
4
|
-
"main": "dist/index.
|
|
3
|
+
"version": "0.10.0",
|
|
4
|
+
"main": "dist/index.cjs",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"test": "vitest run",
|
|
7
7
|
"test:smoke": "UNIVERSE_E2E_REAL=1 vitest run tests/e2e/smoke-real-artemis.test.ts",
|
|
8
|
-
"build": "
|
|
8
|
+
"build": "tsdown",
|
|
9
9
|
"lint": "oxlint src tests",
|
|
10
10
|
"typecheck": "tsc --noEmit",
|
|
11
|
-
"prepare": "husky"
|
|
11
|
+
"prepare": "husky",
|
|
12
|
+
"dev": "tsx src/index.ts"
|
|
12
13
|
},
|
|
13
14
|
"author": "Mrugesh Mohapatra <noreply@mrugesh.dev> (https://mrugesh.dev/)",
|
|
14
15
|
"license": "BSD-3-Clause",
|
|
@@ -26,11 +27,11 @@
|
|
|
26
27
|
],
|
|
27
28
|
"type": "module",
|
|
28
29
|
"bin": {
|
|
29
|
-
"universe": "dist/index.
|
|
30
|
+
"universe": "dist/index.cjs"
|
|
30
31
|
},
|
|
31
32
|
"dependencies": {
|
|
32
33
|
"@clack/prompts": "^1.2.0",
|
|
33
|
-
"
|
|
34
|
+
"commander": "14.0.3",
|
|
34
35
|
"yaml": "^2.8.3",
|
|
35
36
|
"zod": "^4.3.6"
|
|
36
37
|
},
|
|
@@ -39,7 +40,8 @@
|
|
|
39
40
|
"husky": "^9.1.7",
|
|
40
41
|
"oxlint": "^1.60.0",
|
|
41
42
|
"postject": "1.0.0-alpha.6",
|
|
42
|
-
"
|
|
43
|
+
"tsdown": "0.22.0",
|
|
44
|
+
"tsx": "4.22.3",
|
|
43
45
|
"typescript": "^5.9.3",
|
|
44
46
|
"vitest": "^3.2.4"
|
|
45
47
|
},
|
|
@@ -58,4 +60,4 @@
|
|
|
58
60
|
"deployment",
|
|
59
61
|
"freecodecamp"
|
|
60
62
|
]
|
|
61
|
-
}
|
|
63
|
+
}
|