@todesktop/cli 1.12.5 → 1.13.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 +212 -122
- package/dist/cli.js +458 -115
- package/dist/cli.js.map +1 -1
- package/package.json +6 -8
- package/schemas/schema.json +452 -107
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.13.0",
|
|
8
8
|
"license": "MIT",
|
|
9
9
|
"author": "Dave Jeffery <dave@todesktop.com> (http://www.todesktop.com/)",
|
|
10
10
|
"homepage": "https://todesktop.com/cli",
|
|
@@ -28,20 +28,18 @@
|
|
|
28
28
|
"format": "prettier --write .",
|
|
29
29
|
"lint:types": "tsc && tsc-strict",
|
|
30
30
|
"lint--fix": "eslint src test --fix",
|
|
31
|
-
"
|
|
32
|
-
"release
|
|
31
|
+
"docs:generate": "node scripts/generate-readme.js",
|
|
32
|
+
"release": "npm run docs:generate && npm run build && npx np --tag=latest",
|
|
33
|
+
"release-beta": "npm run docs:generate && npm run build && npx np --any-branch --no-tests --tag=beta",
|
|
33
34
|
"test": "ava",
|
|
34
35
|
"test--watch": "npm test -- --watch",
|
|
35
36
|
"postinstall": "node scripts/postinstall.js"
|
|
36
37
|
},
|
|
37
38
|
"files": [
|
|
38
|
-
"scripts",
|
|
39
|
+
"scripts/postinstall.js",
|
|
39
40
|
"schemas",
|
|
40
41
|
"dist",
|
|
41
|
-
"
|
|
42
|
-
".env",
|
|
43
|
-
"LICENSE",
|
|
44
|
-
"README.md"
|
|
42
|
+
".env"
|
|
45
43
|
],
|
|
46
44
|
"dependencies": {
|
|
47
45
|
"@sentry/node": "^8.35.0",
|