@pulse-editor/cli 0.0.1

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.
Files changed (2) hide show
  1. package/package.json +63 -0
  2. package/readme.md +25 -0
package/package.json ADDED
@@ -0,0 +1,63 @@
1
+ {
2
+ "name": "@pulse-editor/cli",
3
+ "version": "0.0.1",
4
+ "license": "MIT",
5
+ "bin": {
6
+ "pulse": "./dist/cli.js"
7
+ },
8
+ "type": "module",
9
+ "engines": {
10
+ "node": ">=16"
11
+ },
12
+ "scripts": {
13
+ "build": "tsc",
14
+ "dev": "tsc --watch",
15
+ "test": "prettier --check . && xo && ava",
16
+ "link": "npm link"
17
+ },
18
+ "files": [
19
+ "dist"
20
+ ],
21
+ "dependencies": {
22
+ "execa": "^9.5.2",
23
+ "ink": "^5.2.0",
24
+ "ink-select-input": "^6.0.0",
25
+ "ink-spinner": "^5.0.0",
26
+ "ink-text-input": "^6.0.0",
27
+ "meow": "^13.2.0",
28
+ "openid-client": "^6.4.2",
29
+ "react": "^18.0.32"
30
+ },
31
+ "devDependencies": {
32
+ "@sindresorhus/tsconfig": "^7.0.0",
33
+ "@types/react": "^18.0.32",
34
+ "@vdemedes/prettier-config": "^2.0.1",
35
+ "ava": "^6.2.0",
36
+ "chalk": "^5.4.1",
37
+ "eslint-config-xo-react": "^0.28.0",
38
+ "eslint-plugin-react": "^7.37.5",
39
+ "eslint-plugin-react-hooks": "^5.2.0",
40
+ "ink-testing-library": "^4.0.0",
41
+ "prettier": "^3.5.3",
42
+ "ts-node": "^10.9.2",
43
+ "typescript": "^5.8.2",
44
+ "xo": "^0.60.0"
45
+ },
46
+ "ava": {
47
+ "extensions": {
48
+ "ts": "module",
49
+ "tsx": "module"
50
+ },
51
+ "nodeArguments": [
52
+ "--loader=ts-node/esm"
53
+ ]
54
+ },
55
+ "xo": {
56
+ "extends": "xo-react",
57
+ "prettier": true,
58
+ "rules": {
59
+ "react/prop-types": "off"
60
+ }
61
+ },
62
+ "prettier": "@vdemedes/prettier-config"
63
+ }
package/readme.md ADDED
@@ -0,0 +1,25 @@
1
+ # cli
2
+
3
+ > This readme is automatically generated by [create-ink-app](https://github.com/vadimdemedes/create-ink-app)
4
+
5
+ ## Install
6
+
7
+ ```bash
8
+ $ npm install --global cli
9
+ ```
10
+
11
+ ## CLI
12
+
13
+ ```
14
+ $ cli --help
15
+
16
+ Usage
17
+ $ cli
18
+
19
+ Options
20
+ --name Your name
21
+
22
+ Examples
23
+ $ cli --name=Jane
24
+ Hello, Jane
25
+ ```