@camera.ui/cli 0.0.35 → 0.0.37
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/package.json +10 -10
- package/templates/base/eslint.config.js +13 -0
- package/templates/base/gitignore +1 -0
- package/templates/python/mypy.ini +3 -1
- package/templates/python/requirements.dev.txt +1 -1
- package/templates/python/requirements.txt +1 -1
- package/templates/typescript/eslint.config.js +13 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@camera.ui/cli",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.37",
|
|
4
4
|
"description": "camera.ui cli",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -21,16 +21,16 @@
|
|
|
21
21
|
"@babel/plugin-transform-typescript": "^7.25.9",
|
|
22
22
|
"@babel/preset-env": "^7.26.0",
|
|
23
23
|
"@babel/preset-typescript": "^7.26.0",
|
|
24
|
-
"@camera.ui/common": "^0.0.
|
|
24
|
+
"@camera.ui/common": "^0.0.34",
|
|
25
25
|
"adm-zip": "^0.5.16",
|
|
26
26
|
"babel-loader": "^9.2.1",
|
|
27
27
|
"chalk": "^5.3.0",
|
|
28
28
|
"commander": "^12.1.0",
|
|
29
29
|
"fs-extra": "^11.2.0",
|
|
30
30
|
"gradient-string": "^3.0.0",
|
|
31
|
-
"inquirer": "^12.0
|
|
31
|
+
"inquirer": "^12.1.0",
|
|
32
32
|
"json-loader": "^0.5.7",
|
|
33
|
-
"node-loader": "^2.
|
|
33
|
+
"node-loader": "^2.1.0",
|
|
34
34
|
"ora": "^8.1.1",
|
|
35
35
|
"prompts": "^2.4.2",
|
|
36
36
|
"semver": "^7.6.3",
|
|
@@ -42,21 +42,21 @@
|
|
|
42
42
|
"webpack-cli": "^5.1.4"
|
|
43
43
|
},
|
|
44
44
|
"devDependencies": {
|
|
45
|
-
"@camera.ui/types": "^0.0.
|
|
46
|
-
"@stylistic/eslint-plugin": "^2.
|
|
45
|
+
"@camera.ui/types": "^0.0.82",
|
|
46
|
+
"@stylistic/eslint-plugin": "^2.11.0",
|
|
47
47
|
"@types/adm-zip": "^0.5.6",
|
|
48
48
|
"@types/fs-extra": "^11.0.4",
|
|
49
|
-
"@types/node": "^22.9.
|
|
49
|
+
"@types/node": "^22.9.1",
|
|
50
50
|
"@types/prompts": "^2.4.9",
|
|
51
51
|
"@types/semver": "^7.5.8",
|
|
52
52
|
"@types/webpack-bundle-analyzer": "^4.7.0",
|
|
53
|
-
"@typescript-eslint/parser": "^8.
|
|
54
|
-
"eslint": "^9.
|
|
53
|
+
"@typescript-eslint/parser": "^8.15.0",
|
|
54
|
+
"eslint": "^9.15.0",
|
|
55
55
|
"globals": "^15.12.0",
|
|
56
56
|
"prettier": "^3.3.3",
|
|
57
57
|
"rimraf": "^6.0.1",
|
|
58
58
|
"typescript": "^5.6.3",
|
|
59
|
-
"typescript-eslint": "^8.
|
|
59
|
+
"typescript-eslint": "^8.15.0",
|
|
60
60
|
"updates": "^16.4.0"
|
|
61
61
|
},
|
|
62
62
|
"author": "seydx (https://github.com/seydx/camera.ui)",
|
|
@@ -32,6 +32,19 @@ export default [
|
|
|
32
32
|
'@stylistic/max-len': ['error', { code: 170, tabWidth: 2 }],
|
|
33
33
|
'@stylistic/quotes': ['error', 'single', { avoidEscape: true }],
|
|
34
34
|
'@stylistic/operator-linebreak': 'off',
|
|
35
|
+
'@stylistic/comma-dangle': [
|
|
36
|
+
'error',
|
|
37
|
+
{
|
|
38
|
+
arrays: 'always-multiline',
|
|
39
|
+
objects: 'always-multiline',
|
|
40
|
+
imports: 'always-multiline',
|
|
41
|
+
exports: 'only-multiline',
|
|
42
|
+
functions: 'always-multiline',
|
|
43
|
+
enums: 'always-multiline',
|
|
44
|
+
generics: 'always-multiline',
|
|
45
|
+
tuples: 'always-multiline',
|
|
46
|
+
},
|
|
47
|
+
],
|
|
35
48
|
|
|
36
49
|
semi: [1, 'always'],
|
|
37
50
|
// quotes: ['error', 'single'],
|
package/templates/base/gitignore
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
ruff==0.7.
|
|
1
|
+
ruff==0.7.4
|
|
@@ -1 +1 @@
|
|
|
1
|
-
camera-ui-python-types==0.
|
|
1
|
+
camera-ui-python-types==0.2.2
|
|
@@ -68,6 +68,19 @@ export default [
|
|
|
68
68
|
'@stylistic/max-len': ['error', { code: 170, tabWidth: 2 }],
|
|
69
69
|
'@stylistic/quotes': ['error', 'single', { avoidEscape: true }],
|
|
70
70
|
'@stylistic/operator-linebreak': 'off',
|
|
71
|
+
'@stylistic/comma-dangle': [
|
|
72
|
+
'error',
|
|
73
|
+
{
|
|
74
|
+
arrays: 'always-multiline',
|
|
75
|
+
objects: 'always-multiline',
|
|
76
|
+
imports: 'always-multiline',
|
|
77
|
+
exports: 'only-multiline',
|
|
78
|
+
functions: 'always-multiline',
|
|
79
|
+
enums: 'always-multiline',
|
|
80
|
+
generics: 'always-multiline',
|
|
81
|
+
tuples: 'always-multiline',
|
|
82
|
+
},
|
|
83
|
+
],
|
|
71
84
|
|
|
72
85
|
semi: [1, 'always'],
|
|
73
86
|
// quotes: ['error', 'single'],
|