@fre4x/arxiv 1.0.30 → 1.0.42
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/dist/index.js +16430 -16421
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -173,6 +173,14 @@ Showing 3 of 891 results (offset: 0)
|
|
|
173
173
|
- **cs.NE** — Neural and Evolutionary Computing
|
|
174
174
|
```
|
|
175
175
|
|
|
176
|
+
## Mock Mode
|
|
177
|
+
|
|
178
|
+
Run without any API key (returns fixture data of identical shape):
|
|
179
|
+
|
|
180
|
+
```bash
|
|
181
|
+
MOCK=true npx @fre4x/arxiv
|
|
182
|
+
```
|
|
183
|
+
|
|
176
184
|
## Deploy
|
|
177
185
|
|
|
178
186
|
```json
|
|
@@ -191,7 +199,8 @@ Showing 3 of 891 results (offset: 0)
|
|
|
191
199
|
```bash
|
|
192
200
|
npm install
|
|
193
201
|
npm run dev # tsx, no build
|
|
194
|
-
npm run build #
|
|
202
|
+
npm run build # esbuild → dist/
|
|
203
|
+
npm test # vitest unit tests
|
|
195
204
|
```
|
|
196
205
|
|
|
197
206
|
## License
|