@rikalabs/parallel 0.1.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.
Files changed (4) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +233 -0
  3. package/dist/index.js +41519 -0
  4. package/package.json +60 -0
package/package.json ADDED
@@ -0,0 +1,60 @@
1
+ {
2
+ "name": "@rikalabs/parallel",
3
+ "version": "0.1.0",
4
+ "description": "A Unix-friendly CLI for the Parallel Search and Extract APIs",
5
+ "keywords": [
6
+ "parallel",
7
+ "search",
8
+ "extract",
9
+ "cli",
10
+ "semantic-search",
11
+ "effect-ts"
12
+ ],
13
+ "repository": {
14
+ "type": "git",
15
+ "url": "git+https://github.com/Rika-Labs/parallel.git"
16
+ },
17
+ "homepage": "https://github.com/Rika-Labs/parallel#readme",
18
+ "bugs": {
19
+ "url": "https://github.com/Rika-Labs/parallel/issues"
20
+ },
21
+ "author": "Rika Labs",
22
+ "license": "MIT",
23
+ "type": "module",
24
+ "main": "dist/index.js",
25
+ "bin": {
26
+ "parallel": "dist/index.js"
27
+ },
28
+ "files": [
29
+ "dist",
30
+ "README.md",
31
+ "LICENSE"
32
+ ],
33
+ "scripts": {
34
+ "dev": "bun run src/index.ts",
35
+ "build": "bun build src/index.ts --outdir dist --target bun",
36
+ "test": "bun test",
37
+ "test:coverage": "bun test --coverage",
38
+ "lint": "oxlint . --ignore-pattern '.submodules/**'",
39
+ "prepare": "husky"
40
+ },
41
+ "devDependencies": {
42
+ "@commitlint/cli": "^20.3.1",
43
+ "@commitlint/config-conventional": "^20.3.1",
44
+ "@types/bun": "latest",
45
+ "husky": "^9.1.7",
46
+ "lint-staged": "^16.2.7",
47
+ "oxlint": "^1.38.0"
48
+ },
49
+ "dependencies": {
50
+ "@effect/cli": "^0.73.0",
51
+ "@effect/platform": "^0.94.1",
52
+ "@effect/platform-bun": "^0.87.0",
53
+ "effect": "^3.19.14"
54
+ },
55
+ "lint-staged": {
56
+ "*.ts": [
57
+ "oxlint --fix"
58
+ ]
59
+ }
60
+ }