pi-research 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 +10 -1
- package/package.json +15 -5
package/README.md
CHANGED
|
@@ -8,10 +8,18 @@
|
|
|
8
8
|
|
|
9
9
|
## Install
|
|
10
10
|
|
|
11
|
+
For Pi:
|
|
12
|
+
|
|
11
13
|
```bash
|
|
12
14
|
pi install npm:pi-research
|
|
13
15
|
```
|
|
14
16
|
|
|
17
|
+
For npm-based workflows:
|
|
18
|
+
|
|
19
|
+
```bash
|
|
20
|
+
npm install pi-research
|
|
21
|
+
```
|
|
22
|
+
|
|
15
23
|
GitHub repository: https://github.com/endgegnerbert-tech/pi-research
|
|
16
24
|
|
|
17
25
|
You can also fork the repository and install it from a local path while developing.
|
|
@@ -85,6 +93,7 @@ This repo is a Pi package. The extension entrypoint is:
|
|
|
85
93
|
## Release notes
|
|
86
94
|
|
|
87
95
|
- Package name: `pi-research`
|
|
88
|
-
- Install command: `pi install npm:pi-research`
|
|
96
|
+
- Install command for Pi: `pi install npm:pi-research`
|
|
97
|
+
- Install command for npm: `npm install pi-research`
|
|
89
98
|
- GitHub: `https://github.com/endgegnerbert-tech/pi-research`
|
|
90
99
|
- Tool name: `pi-research`
|
package/package.json
CHANGED
|
@@ -1,20 +1,28 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pi-research",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"private": false,
|
|
5
5
|
"type": "module",
|
|
6
6
|
"description": "Pi extension for web research.",
|
|
7
7
|
"main": "./index.js",
|
|
8
|
-
"files": [
|
|
8
|
+
"files": [
|
|
9
|
+
"extensions",
|
|
10
|
+
"index.js",
|
|
11
|
+
"lib",
|
|
12
|
+
"README.md",
|
|
13
|
+
"package.json"
|
|
14
|
+
],
|
|
9
15
|
"repository": {
|
|
10
16
|
"type": "git",
|
|
11
|
-
"url": "https://github.com/endgegnerbert-tech/pi-research.git"
|
|
17
|
+
"url": "git+https://github.com/endgegnerbert-tech/pi-research.git"
|
|
12
18
|
},
|
|
13
19
|
"homepage": "https://github.com/endgegnerbert-tech/pi-research#readme",
|
|
14
20
|
"bugs": {
|
|
15
21
|
"url": "https://github.com/endgegnerbert-tech/pi-research/issues"
|
|
16
22
|
},
|
|
17
|
-
"keywords": [
|
|
23
|
+
"keywords": [
|
|
24
|
+
"pi-package"
|
|
25
|
+
],
|
|
18
26
|
"scripts": {
|
|
19
27
|
"test": "node --test"
|
|
20
28
|
},
|
|
@@ -28,6 +36,8 @@
|
|
|
28
36
|
"typebox": "*"
|
|
29
37
|
},
|
|
30
38
|
"pi": {
|
|
31
|
-
"extensions": [
|
|
39
|
+
"extensions": [
|
|
40
|
+
"./extensions/pi-research.ts"
|
|
41
|
+
]
|
|
32
42
|
}
|
|
33
43
|
}
|