pi-snippets 1.0.0 → 1.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.
- package/README.md +1 -20
- package/package.json +11 -3
package/README.md
CHANGED
|
@@ -7,14 +7,7 @@ no confirmation needed. Just natural typing flow.
|
|
|
7
7
|
|
|
8
8
|
## Quick Start
|
|
9
9
|
|
|
10
|
-
|
|
11
|
-
# Install from a local clone
|
|
12
|
-
pi install ./pi-snippets
|
|
13
|
-
|
|
14
|
-
# Or test without installing
|
|
15
|
-
pi -e ./pi-snippets/extensions/index.ts
|
|
16
|
-
|
|
17
|
-
# Install from npm (once published)
|
|
10
|
+
# Install from npm
|
|
18
11
|
pi install npm:pi-snippets
|
|
19
12
|
```
|
|
20
13
|
|
|
@@ -92,18 +85,6 @@ to avoid accidental or premature expansion:
|
|
|
92
85
|
Multi-character, abbreviation-style triggers work best. Avoid triggers that are
|
|
93
86
|
prefixes of each other.
|
|
94
87
|
|
|
95
|
-
## Publishing to npm
|
|
96
|
-
|
|
97
|
-
```bash
|
|
98
|
-
cd pi-snippets
|
|
99
|
-
npm publish --access public
|
|
100
|
-
```
|
|
101
|
-
|
|
102
|
-
Then users install with:
|
|
103
|
-
```bash
|
|
104
|
-
pi install npm:pi-snippets
|
|
105
|
-
```
|
|
106
|
-
|
|
107
88
|
## License
|
|
108
89
|
|
|
109
90
|
MIT
|
package/package.json
CHANGED
|
@@ -1,12 +1,20 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pi-snippets",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"description": "Zero-keystroke snippet auto-expander for pi — type a trigger word, hit space, and it expands",
|
|
5
|
-
"keywords": [
|
|
5
|
+
"keywords": [
|
|
6
|
+
"pi-package",
|
|
7
|
+
"pi-snippets",
|
|
8
|
+
"pi-extension",
|
|
9
|
+
"snippets",
|
|
10
|
+
"text-expander"
|
|
11
|
+
],
|
|
6
12
|
"license": "MIT",
|
|
7
13
|
"author": "",
|
|
8
14
|
"pi": {
|
|
9
|
-
"extensions": [
|
|
15
|
+
"extensions": [
|
|
16
|
+
"./extensions"
|
|
17
|
+
]
|
|
10
18
|
},
|
|
11
19
|
"peerDependencies": {
|
|
12
20
|
"@earendil-works/pi-coding-agent": "*",
|