@todesktop/cli 1.7.6 → 1.8.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 +64 -4
- package/dist/cli.js +1291 -905
- package/dist/cli.js.map +4 -4
- package/package.json +6 -3
package/package.json
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"access": "public"
|
|
5
5
|
},
|
|
6
6
|
"name": "@todesktop/cli",
|
|
7
|
-
"version": "1.
|
|
7
|
+
"version": "1.8.0",
|
|
8
8
|
"license": "MIT",
|
|
9
9
|
"author": "Dave Jeffery <dave@todesktop.com> (http://www.todesktop.com/)",
|
|
10
10
|
"homepage": "https://todesktop.com/cli",
|
|
@@ -84,8 +84,9 @@
|
|
|
84
84
|
"xdg-basedir": "^4.0.0"
|
|
85
85
|
},
|
|
86
86
|
"devDependencies": {
|
|
87
|
-
"@todesktop/shared": "^7.186.
|
|
87
|
+
"@todesktop/shared": "^7.186.18",
|
|
88
88
|
"@types/bunyan": "^1.8.6",
|
|
89
|
+
"@types/node": "^20.8.4",
|
|
89
90
|
"@types/react": "^18.0.26",
|
|
90
91
|
"@typescript-eslint/eslint-plugin": "^5.46.1",
|
|
91
92
|
"@typescript-eslint/parser": "^5.46.1",
|
|
@@ -108,11 +109,12 @@
|
|
|
108
109
|
"husky": "^4.3.0",
|
|
109
110
|
"ink-testing-library": "^2.1.0",
|
|
110
111
|
"lint-staged": "^10.2.11",
|
|
112
|
+
"package-json-type": "^1.0.3",
|
|
111
113
|
"prettier": "^2.8.1",
|
|
112
114
|
"proxyquire": "^2.1.3",
|
|
113
115
|
"sinon": "^9.0.3",
|
|
114
116
|
"typescript": "^4.9.4",
|
|
115
|
-
"typescript-strict-plugin": "^2.1
|
|
117
|
+
"typescript-strict-plugin": "^2.2.1"
|
|
116
118
|
},
|
|
117
119
|
"ava": {
|
|
118
120
|
"extensions": [
|
|
@@ -123,6 +125,7 @@
|
|
|
123
125
|
"test/**/*.ts",
|
|
124
126
|
"**/*.test.ts",
|
|
125
127
|
"**/*.test.tsx",
|
|
128
|
+
"!build/**/*",
|
|
126
129
|
"!test/fixtures/**/*",
|
|
127
130
|
"!test/utilities/**/*"
|
|
128
131
|
],
|