@basictech/cli 0.0.33 → 0.0.34
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.js +0 -0
- package/package.json +19 -25
package/dist/index.js
CHANGED
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@basictech/cli",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.34",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Basic CLI for creating & managing your projects",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -18,41 +18,34 @@
|
|
|
18
18
|
"test:watch": "vitest watch --exclude='tests/components/**'",
|
|
19
19
|
"test:ui": "vitest --ui",
|
|
20
20
|
"test:coverage": "vitest --coverage",
|
|
21
|
-
"changeset": "changeset",
|
|
22
|
-
"changeset:version": "changeset version",
|
|
23
|
-
"changeset:publish": "changeset publish",
|
|
24
|
-
"changeset:status": "changeset status",
|
|
25
21
|
"prepublishOnly": "npm run build"
|
|
26
22
|
},
|
|
27
23
|
"dependencies": {
|
|
28
|
-
"@babel/parser": "^7.
|
|
29
|
-
"@babel/types": "^7.
|
|
30
|
-
"commander": "^
|
|
31
|
-
"ink": "^
|
|
32
|
-
"react": "^
|
|
24
|
+
"@babel/parser": "^7.29.2",
|
|
25
|
+
"@babel/types": "^7.29.0",
|
|
26
|
+
"commander": "^14.0.3",
|
|
27
|
+
"ink": "^6.8.0",
|
|
28
|
+
"react": "^19.2.4"
|
|
33
29
|
},
|
|
34
30
|
"devDependencies": {
|
|
35
|
-
"@
|
|
36
|
-
"@types/
|
|
37
|
-
"@types/react": "^18.3.12",
|
|
31
|
+
"@types/node": "^22.19.0",
|
|
32
|
+
"@types/react": "^19.2.13",
|
|
38
33
|
"@typescript-eslint/parser": "^8.34.0",
|
|
39
34
|
"@typescript-eslint/types": "^8.34.0",
|
|
40
|
-
"@vitest/coverage-v8": "^
|
|
41
|
-
"@vitest/ui": "^
|
|
42
|
-
"esbuild": "^0.
|
|
35
|
+
"@vitest/coverage-v8": "^3.2.4",
|
|
36
|
+
"@vitest/ui": "^3.2.4",
|
|
37
|
+
"esbuild": "^0.27.4",
|
|
43
38
|
"ink-testing-library": "^4.0.0",
|
|
44
|
-
"tsx": "^4.
|
|
45
|
-
"typescript": "^5.
|
|
39
|
+
"tsx": "^4.21.0",
|
|
40
|
+
"typescript": "^5.9.3",
|
|
46
41
|
"vite": "^6.3.5",
|
|
47
|
-
"vitest": "^
|
|
42
|
+
"vitest": "^3.2.4"
|
|
48
43
|
},
|
|
49
44
|
"files": [
|
|
50
45
|
"dist/**/*.js",
|
|
51
46
|
"dist/**/*.d.ts",
|
|
52
47
|
"dist/**/*.js.map",
|
|
53
|
-
"dist/**/*.d.ts.map"
|
|
54
|
-
"node_modules/@babel/parser/**/*",
|
|
55
|
-
"node_modules/@babel/types/**/*"
|
|
48
|
+
"dist/**/*.d.ts.map"
|
|
56
49
|
],
|
|
57
50
|
"keywords": [
|
|
58
51
|
"cli",
|
|
@@ -68,12 +61,13 @@
|
|
|
68
61
|
"homepage": "https://basic.tech",
|
|
69
62
|
"repository": {
|
|
70
63
|
"type": "git",
|
|
71
|
-
"url": "https://github.com/basicdb/basic-
|
|
64
|
+
"url": "https://github.com/basicdb/basic-admin.git",
|
|
65
|
+
"directory": "apps/cli"
|
|
72
66
|
},
|
|
73
67
|
"bugs": {
|
|
74
|
-
"url": "https://github.com/basicdb/basic-
|
|
68
|
+
"url": "https://github.com/basicdb/basic-admin/issues"
|
|
75
69
|
},
|
|
76
70
|
"engines": {
|
|
77
|
-
"node": ">=
|
|
71
|
+
"node": ">=22.0.0 <25.0.0"
|
|
78
72
|
}
|
|
79
73
|
}
|