pluresdb 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/LICENSE +72 -0
- package/README.md +322 -0
- package/dist/.tsbuildinfo +1 -0
- package/dist/cli.d.ts +7 -0
- package/dist/cli.d.ts.map +1 -0
- package/dist/cli.js +253 -0
- package/dist/cli.js.map +1 -0
- package/dist/node-index.d.ts +52 -0
- package/dist/node-index.d.ts.map +1 -0
- package/dist/node-index.js +359 -0
- package/dist/node-index.js.map +1 -0
- package/dist/node-wrapper.d.ts +44 -0
- package/dist/node-wrapper.d.ts.map +1 -0
- package/dist/node-wrapper.js +294 -0
- package/dist/node-wrapper.js.map +1 -0
- package/dist/types/index.d.ts +28 -0
- package/dist/types/index.d.ts.map +1 -0
- package/dist/types/index.js +3 -0
- package/dist/types/index.js.map +1 -0
- package/dist/types/node-types.d.ts +59 -0
- package/dist/types/node-types.d.ts.map +1 -0
- package/dist/types/node-types.js +6 -0
- package/dist/types/node-types.js.map +1 -0
- package/dist/vscode/extension.d.ts +81 -0
- package/dist/vscode/extension.d.ts.map +1 -0
- package/dist/vscode/extension.js +309 -0
- package/dist/vscode/extension.js.map +1 -0
- package/examples/basic-usage.d.ts +2 -0
- package/examples/basic-usage.d.ts.map +1 -0
- package/examples/basic-usage.js +26 -0
- package/examples/basic-usage.js.map +1 -0
- package/examples/basic-usage.ts +29 -0
- package/examples/vscode-extension-example/README.md +95 -0
- package/examples/vscode-extension-example/package.json +49 -0
- package/examples/vscode-extension-example/src/extension.ts +163 -0
- package/examples/vscode-extension-example/tsconfig.json +12 -0
- package/examples/vscode-extension-integration.d.ts +24 -0
- package/examples/vscode-extension-integration.d.ts.map +1 -0
- package/examples/vscode-extension-integration.js +285 -0
- package/examples/vscode-extension-integration.js.map +1 -0
- package/examples/vscode-extension-integration.ts +41 -0
- package/package.json +115 -0
- package/scripts/compiled-crud-verify.ts +28 -0
- package/scripts/dogfood.ts +258 -0
- package/scripts/postinstall.js +155 -0
- package/scripts/run-tests.ts +175 -0
- package/scripts/setup-libclang.ps1 +209 -0
- package/src/benchmarks/memory-benchmarks.ts +316 -0
- package/src/benchmarks/run-benchmarks.ts +293 -0
- package/src/cli.ts +231 -0
- package/src/config.ts +49 -0
- package/src/core/crdt.ts +104 -0
- package/src/core/database.ts +494 -0
- package/src/healthcheck.ts +156 -0
- package/src/http/api-server.ts +334 -0
- package/src/index.ts +28 -0
- package/src/logic/rules.ts +44 -0
- package/src/main.rs +3 -0
- package/src/main.ts +190 -0
- package/src/network/websocket-server.ts +115 -0
- package/src/node-index.ts +385 -0
- package/src/node-wrapper.ts +320 -0
- package/src/sqlite-compat.ts +586 -0
- package/src/sqlite3-compat.ts +55 -0
- package/src/storage/kv-storage.ts +71 -0
- package/src/tests/core.test.ts +281 -0
- package/src/tests/fixtures/performance-data.json +71 -0
- package/src/tests/fixtures/test-data.json +124 -0
- package/src/tests/integration/api-server.test.ts +232 -0
- package/src/tests/integration/mesh-network.test.ts +297 -0
- package/src/tests/logic.test.ts +30 -0
- package/src/tests/performance/load.test.ts +288 -0
- package/src/tests/security/input-validation.test.ts +282 -0
- package/src/tests/unit/core.test.ts +216 -0
- package/src/tests/unit/subscriptions.test.ts +135 -0
- package/src/tests/unit/vector-search.test.ts +173 -0
- package/src/tests/vscode_extension_test.ts +253 -0
- package/src/types/index.ts +32 -0
- package/src/types/node-types.ts +66 -0
- package/src/util/debug.ts +14 -0
- package/src/vector/index.ts +59 -0
- package/src/vscode/extension.ts +364 -0
- package/web/README.md +27 -0
- package/web/svelte/package.json +31 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
PluresDB - Open Source License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2024 Plures Organization
|
|
4
|
+
|
|
5
|
+
This program is free software: you can redistribute it and/or modify
|
|
6
|
+
it under the terms of the GNU Affero General Public License as published by
|
|
7
|
+
the Free Software Foundation, either version 3 of the License, or
|
|
8
|
+
(at your option) any later version.
|
|
9
|
+
|
|
10
|
+
This program is distributed in the hope that it will be useful,
|
|
11
|
+
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
12
|
+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
13
|
+
GNU Affero General Public License for more details.
|
|
14
|
+
|
|
15
|
+
You should have received a copy of the GNU Affero General Public License
|
|
16
|
+
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
17
|
+
|
|
18
|
+
===============================================================================
|
|
19
|
+
LICENSE COMPLIANCE
|
|
20
|
+
===============================================================================
|
|
21
|
+
|
|
22
|
+
AGPL v3 requires that:
|
|
23
|
+
- All modifications to PluresDB must be open source
|
|
24
|
+
- If you provide PluresDB as a service, you must offer source code to users
|
|
25
|
+
- Derivative works must be licensed under AGPL v3
|
|
26
|
+
- You cannot add additional restrictions
|
|
27
|
+
|
|
28
|
+
===============================================================================
|
|
29
|
+
THIRD-PARTY LICENSES
|
|
30
|
+
===============================================================================
|
|
31
|
+
|
|
32
|
+
This software includes third-party components with the following licenses:
|
|
33
|
+
|
|
34
|
+
Dependencies (MIT License):
|
|
35
|
+
- tokio: https://github.com/tokio-rs/tokio
|
|
36
|
+
- serde: https://github.com/serde-rs/serde
|
|
37
|
+
- axum: https://github.com/tokio-rs/axum
|
|
38
|
+
- sqlx: https://github.com/launchbadge/sqlx
|
|
39
|
+
- hnsw_rs: https://github.com/plures/hnsw_rs
|
|
40
|
+
|
|
41
|
+
JavaScript Dependencies (MIT License):
|
|
42
|
+
- axios: https://github.com/axios/axios
|
|
43
|
+
- cytoscape: https://github.com/cytoscape/cytoscape.js
|
|
44
|
+
- monaco-editor: https://github.com/microsoft/monaco-editor
|
|
45
|
+
|
|
46
|
+
All third-party components maintain their original licenses and copyrights.
|
|
47
|
+
|
|
48
|
+
===============================================================================
|
|
49
|
+
CONTACT INFORMATION
|
|
50
|
+
===============================================================================
|
|
51
|
+
|
|
52
|
+
GitHub: https://github.com/plures/pluresdb
|
|
53
|
+
Issues: https://github.com/plures/pluresdb/issues
|
|
54
|
+
Discussions: https://github.com/plures/pluresdb/discussions
|
|
55
|
+
|
|
56
|
+
For security issues, please see SECURITY.md
|
|
57
|
+
|
|
58
|
+
===============================================================================
|
|
59
|
+
LEGAL NOTICE
|
|
60
|
+
===============================================================================
|
|
61
|
+
|
|
62
|
+
This license ensures that:
|
|
63
|
+
- PluresDB remains free and open source
|
|
64
|
+
- All modifications must be shared with the community
|
|
65
|
+
- Network use triggers the requirement to share source code
|
|
66
|
+
- The software and community benefit from all improvements
|
|
67
|
+
- Commercial users can still build businesses on top of PluresDB
|
|
68
|
+
- We can generate revenue through services and support
|
|
69
|
+
- The ecosystem benefits from shared improvements
|
|
70
|
+
|
|
71
|
+
By using this software, you agree to the terms of the GNU Affero General
|
|
72
|
+
Public License v3.0.
|
package/README.md
ADDED
|
@@ -0,0 +1,322 @@
|
|
|
1
|
+
# PluresDB
|
|
2
|
+
|
|
3
|
+
[](https://badge.fury.io/js/pluresdb)
|
|
4
|
+
[](https://deno.land)
|
|
5
|
+
[](https://opensource.org/licenses/AGPL-3.0)
|
|
6
|
+
|
|
7
|
+
**P2P Graph Database with SQLite Compatibility** - A local-first, offline-first database for modern applications.
|
|
8
|
+
|
|
9
|
+
## 🚀 Quick Start
|
|
10
|
+
|
|
11
|
+
### Install
|
|
12
|
+
|
|
13
|
+
```bash
|
|
14
|
+
# npm
|
|
15
|
+
npm install pluresdb
|
|
16
|
+
|
|
17
|
+
# yarn
|
|
18
|
+
yarn add pluresdb
|
|
19
|
+
|
|
20
|
+
# pnpm
|
|
21
|
+
pnpm add pluresdb
|
|
22
|
+
|
|
23
|
+
# Deno (JSR)
|
|
24
|
+
deno add @plures/pluresdb
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
### Development Prerequisites (Rust Components)
|
|
28
|
+
|
|
29
|
+
If you plan to build or test the Rust crates in this repository, make sure `libclang` is available so
|
|
30
|
+
bindgen-based dependencies (like `zstd-sys`) can compile. On Windows you can automate this setup with:
|
|
31
|
+
|
|
32
|
+
```powershell
|
|
33
|
+
pwsh ./scripts/setup-libclang.ps1 -ConfigureCurrentProcess
|
|
34
|
+
```
|
|
35
|
+
|
|
36
|
+
The script will detect or install LLVM (via `winget`/`choco`), set the `LIBCLANG_PATH` environment variable,
|
|
37
|
+
and update the current session so that `cargo build` / `cargo test` can run without manual configuration.
|
|
38
|
+
Restart your terminal if you omit the `-ConfigureCurrentProcess` flag.
|
|
39
|
+
|
|
40
|
+
## 📦 Packaging Artifacts
|
|
41
|
+
|
|
42
|
+
Generate Windows, MSI, Deno, and Nix release bundles with the helper script:
|
|
43
|
+
|
|
44
|
+
```powershell
|
|
45
|
+
pwsh ./packaging/scripts/build-packages.ps1
|
|
46
|
+
```
|
|
47
|
+
|
|
48
|
+
The script automatically reads the release version from `Cargo.toml`. Override it for pre-release cuts if needed:
|
|
49
|
+
|
|
50
|
+
```powershell
|
|
51
|
+
pwsh ./packaging/scripts/build-packages.ps1 -Version 1.1.0-rc1
|
|
52
|
+
```
|
|
53
|
+
|
|
54
|
+
### Basic Usage
|
|
55
|
+
|
|
56
|
+
```typescript
|
|
57
|
+
import { PluresNode, SQLiteCompatibleAPI } from "pluresdb";
|
|
58
|
+
|
|
59
|
+
// Start the database
|
|
60
|
+
const db = new PluresNode({
|
|
61
|
+
config: {
|
|
62
|
+
port: 34567,
|
|
63
|
+
host: "localhost",
|
|
64
|
+
dataDir: "./data",
|
|
65
|
+
},
|
|
66
|
+
autoStart: true,
|
|
67
|
+
});
|
|
68
|
+
|
|
69
|
+
// Use SQLite-compatible API
|
|
70
|
+
const sqlite = new SQLiteCompatibleAPI();
|
|
71
|
+
|
|
72
|
+
// Create tables
|
|
73
|
+
await sqlite.exec(`
|
|
74
|
+
CREATE TABLE users (
|
|
75
|
+
id INTEGER PRIMARY KEY,
|
|
76
|
+
name TEXT,
|
|
77
|
+
email TEXT
|
|
78
|
+
)
|
|
79
|
+
`);
|
|
80
|
+
|
|
81
|
+
// Insert data
|
|
82
|
+
await sqlite.run("INSERT INTO users (name, email) VALUES (?, ?)", ["John", "john@example.com"]);
|
|
83
|
+
|
|
84
|
+
// Query data
|
|
85
|
+
const users = await sqlite.all("SELECT * FROM users");
|
|
86
|
+
|
|
87
|
+
// Vector search
|
|
88
|
+
const results = await sqlite.vectorSearch("machine learning", 10);
|
|
89
|
+
```
|
|
90
|
+
|
|
91
|
+
#### In Deno
|
|
92
|
+
|
|
93
|
+
```ts
|
|
94
|
+
import { GunDB, startApiServer } from "jsr:@plures/pluresdb";
|
|
95
|
+
|
|
96
|
+
const db = new GunDB();
|
|
97
|
+
await db.ready();
|
|
98
|
+
|
|
99
|
+
// start the mesh listener and optional HTTP API
|
|
100
|
+
db.serve({ port: 34567 });
|
|
101
|
+
const api = startApiServer({ port: 8080, db });
|
|
102
|
+
|
|
103
|
+
await db.put("user:alice", { name: "Alice", email: "alice@example.com" });
|
|
104
|
+
const record = await db.get("user:alice");
|
|
105
|
+
console.log(record);
|
|
106
|
+
|
|
107
|
+
// remember to close when the process exits
|
|
108
|
+
await db.close();
|
|
109
|
+
api.close();
|
|
110
|
+
```
|
|
111
|
+
|
|
112
|
+
## 🎯 Features
|
|
113
|
+
|
|
114
|
+
### Core Database
|
|
115
|
+
|
|
116
|
+
- **P2P Graph Database**: Distributed, peer-to-peer data storage
|
|
117
|
+
- **SQLite Compatibility**: 95% SQLite API compatibility for easy migration
|
|
118
|
+
- **CRDT Conflict Resolution**: Automatic conflict resolution for distributed data
|
|
119
|
+
- **Vector Search**: Built-in vector embeddings and similarity search
|
|
120
|
+
- **Local-First**: Offline-first data storage with sync when online
|
|
121
|
+
|
|
122
|
+
### P2P Ecosystem
|
|
123
|
+
|
|
124
|
+
- **Identity Management**: Public key infrastructure for peer identification
|
|
125
|
+
- **Encrypted Sharing**: End-to-end encrypted data sharing between peers
|
|
126
|
+
- **Cross-Device Sync**: Automatic synchronization across all your devices
|
|
127
|
+
- **Acceptance Policies**: Granular control over what data to accept from peers
|
|
128
|
+
|
|
129
|
+
### Developer Experience
|
|
130
|
+
|
|
131
|
+
- **TypeScript Support**: Full TypeScript definitions included
|
|
132
|
+
- **VSCode Integration**: Easy integration with VSCode extensions
|
|
133
|
+
- **Web UI**: Comprehensive 24-tab management interface
|
|
134
|
+
- **REST API**: Full REST API for web applications
|
|
135
|
+
- **WebSocket API**: Real-time updates and synchronization
|
|
136
|
+
|
|
137
|
+
## 📦 Installation Methods
|
|
138
|
+
|
|
139
|
+
### Package Managers
|
|
140
|
+
|
|
141
|
+
```bash
|
|
142
|
+
# Windows
|
|
143
|
+
winget install plures.pluresdb
|
|
144
|
+
|
|
145
|
+
# macOS
|
|
146
|
+
brew install plures/pluresdb/pluresdb
|
|
147
|
+
|
|
148
|
+
# Linux (NixOS)
|
|
149
|
+
nix-env -iA nixpkgs.pluresdb
|
|
150
|
+
|
|
151
|
+
# Universal install script
|
|
152
|
+
curl -fsSL https://raw.githubusercontent.com/plures/pluresdb/main/install.sh | bash
|
|
153
|
+
```
|
|
154
|
+
|
|
155
|
+
### Docker
|
|
156
|
+
|
|
157
|
+
```bash
|
|
158
|
+
docker pull plures/pluresdb:latest
|
|
159
|
+
docker run -p 34567:34567 -p 34568:34568 plures/pluresdb:latest
|
|
160
|
+
```
|
|
161
|
+
|
|
162
|
+
## 🔧 VSCode Extension Integration
|
|
163
|
+
|
|
164
|
+
Perfect for VSCode extensions that currently use SQLite:
|
|
165
|
+
|
|
166
|
+
```typescript
|
|
167
|
+
import { SQLiteCompatibleAPI } from "pluresdb";
|
|
168
|
+
|
|
169
|
+
export function activate(context: vscode.ExtensionContext) {
|
|
170
|
+
// Replace your SQLite database with PluresDB
|
|
171
|
+
const db = new SQLiteCompatibleAPI({
|
|
172
|
+
config: {
|
|
173
|
+
dataDir: path.join(context.globalStorageUri.fsPath, "pluresdb"),
|
|
174
|
+
},
|
|
175
|
+
});
|
|
176
|
+
|
|
177
|
+
// Use the same SQLite API you're familiar with
|
|
178
|
+
await db.exec("CREATE TABLE settings (key TEXT, value TEXT)");
|
|
179
|
+
await db.run("INSERT INTO settings VALUES (?, ?)", ["theme", "dark"]);
|
|
180
|
+
const settings = await db.all("SELECT * FROM settings");
|
|
181
|
+
}
|
|
182
|
+
```
|
|
183
|
+
|
|
184
|
+
## 🌐 Web UI
|
|
185
|
+
|
|
186
|
+
Access the comprehensive web interface at `http://localhost:34568`:
|
|
187
|
+
|
|
188
|
+
- **Data Explorer**: Browse and edit your data
|
|
189
|
+
- **Graph Visualization**: Interactive graph view of relationships
|
|
190
|
+
- **Vector Search**: Semantic search across your data
|
|
191
|
+
- **P2P Management**: Manage peers and encrypted sharing
|
|
192
|
+
- **Performance Monitoring**: Real-time performance metrics
|
|
193
|
+
- **Settings**: Configure database and P2P settings
|
|
194
|
+
|
|
195
|
+
## 🔌 API Reference
|
|
196
|
+
|
|
197
|
+
### SQLite-Compatible API
|
|
198
|
+
|
|
199
|
+
```typescript
|
|
200
|
+
// Database operations
|
|
201
|
+
await sqlite.exec(sql); // Execute SQL
|
|
202
|
+
await sqlite.run(sql, params); // Run SQL with parameters
|
|
203
|
+
await sqlite.get(sql, params); // Get single row
|
|
204
|
+
await sqlite.all(sql, params); // Get all rows
|
|
205
|
+
|
|
206
|
+
// Key-value operations
|
|
207
|
+
await sqlite.put(key, value); // Store key-value pair
|
|
208
|
+
await sqlite.getValue(key); // Get value by key
|
|
209
|
+
await sqlite.delete(key); // Delete key
|
|
210
|
+
|
|
211
|
+
// Vector search
|
|
212
|
+
await sqlite.vectorSearch(query, limit); // Semantic search
|
|
213
|
+
```
|
|
214
|
+
|
|
215
|
+
### P2P API
|
|
216
|
+
|
|
217
|
+
```typescript
|
|
218
|
+
// Identity management
|
|
219
|
+
await db.createIdentity({ name: "John", email: "john@example.com" });
|
|
220
|
+
await db.searchPeers("developer");
|
|
221
|
+
|
|
222
|
+
// Encrypted sharing
|
|
223
|
+
await db.shareNode(nodeId, targetPeerId, { accessLevel: "read-only" });
|
|
224
|
+
await db.acceptSharedNode(sharedNodeId);
|
|
225
|
+
|
|
226
|
+
// Cross-device sync
|
|
227
|
+
await db.addDevice({ name: "My Phone", type: "phone" });
|
|
228
|
+
await db.syncWithDevice(deviceId);
|
|
229
|
+
```
|
|
230
|
+
|
|
231
|
+
## 🚀 Migration from SQLite
|
|
232
|
+
|
|
233
|
+
Migrating from SQLite is straightforward:
|
|
234
|
+
|
|
235
|
+
1. **Install PluresDB**: `npm install pluresdb`
|
|
236
|
+
2. **Replace imports**: Change `sqlite3` to `pluresdb`
|
|
237
|
+
3. **Update initialization**: Use `SQLiteCompatibleAPI` instead of `sqlite3.Database`
|
|
238
|
+
4. **Keep your queries**: All SQL queries work the same way
|
|
239
|
+
|
|
240
|
+
```typescript
|
|
241
|
+
// Before (SQLite)
|
|
242
|
+
import sqlite3 from "sqlite3";
|
|
243
|
+
const db = new sqlite3.Database("./data.db");
|
|
244
|
+
|
|
245
|
+
// After (PluresDB)
|
|
246
|
+
import { SQLiteCompatibleAPI } from "pluresdb";
|
|
247
|
+
const db = new SQLiteCompatibleAPI();
|
|
248
|
+
```
|
|
249
|
+
|
|
250
|
+
## 🔒 Security
|
|
251
|
+
|
|
252
|
+
- **End-to-End Encryption**: All shared data is encrypted
|
|
253
|
+
- **Public Key Infrastructure**: Secure peer identification
|
|
254
|
+
- **Access Control**: Granular permissions and policies
|
|
255
|
+
- **Audit Trail**: Complete logging of all activities
|
|
256
|
+
- **Local-First**: Your data stays on your devices
|
|
257
|
+
- **Payload Sanitization**: Incoming records are scrubbed to neutralize prototype pollution and function injection attempts
|
|
258
|
+
|
|
259
|
+
## 🧪 Testing & Verification
|
|
260
|
+
|
|
261
|
+
PluresDB ships with a unified verification workflow that compiles the TypeScript entry points and runs every Deno test suite (integration, performance, security, and unit).
|
|
262
|
+
|
|
263
|
+
```powershell
|
|
264
|
+
npm run verify
|
|
265
|
+
```
|
|
266
|
+
|
|
267
|
+
The command executes `tsc -p tsconfig.json` followed by `deno test -A --unstable-kv`, ensuring shipping builds stay green.
|
|
268
|
+
|
|
269
|
+
## 📊 Performance
|
|
270
|
+
|
|
271
|
+
- **Vector Search**: Sub-millisecond similarity search
|
|
272
|
+
- **CRDT Sync**: Efficient conflict resolution
|
|
273
|
+
- **Local Storage**: Fast local operations
|
|
274
|
+
- **P2P Sync**: Optimized for bandwidth and latency
|
|
275
|
+
- **Memory Efficient**: Minimal memory footprint
|
|
276
|
+
|
|
277
|
+
## 🌍 Use Cases
|
|
278
|
+
|
|
279
|
+
- **VSCode Extensions**: Replace SQLite with P2P capabilities
|
|
280
|
+
- **Local-First Apps**: Offline-first applications
|
|
281
|
+
- **Collaborative Tools**: Real-time collaboration
|
|
282
|
+
- **IoT Applications**: Edge computing and sync
|
|
283
|
+
- **Research Projects**: Academic and research data
|
|
284
|
+
- **Personal Knowledge Management**: Personal wikis and notes
|
|
285
|
+
|
|
286
|
+
## 📚 Documentation
|
|
287
|
+
|
|
288
|
+
- [Installation Guide](packaging/INSTALLATION.md)
|
|
289
|
+
- [API Reference](docs/API.md)
|
|
290
|
+
- [VSCode Integration](examples/vscode-extension-integration.ts)
|
|
291
|
+
- [Migration Guide](docs/MIGRATION.md)
|
|
292
|
+
- [P2P Guide](docs/P2P.md)
|
|
293
|
+
|
|
294
|
+
## 🤝 Contributing
|
|
295
|
+
|
|
296
|
+
We welcome contributions! Please see our [Contributing Guide](CONTRIBUTING.md) for details.
|
|
297
|
+
|
|
298
|
+
**Note**: By contributing to PluresDB, you agree that your contributions will be licensed under the AGPL v3 license.
|
|
299
|
+
|
|
300
|
+
## 📄 License
|
|
301
|
+
|
|
302
|
+
This project is licensed under the GNU Affero General Public License v3.0 (AGPL v3). This ensures that all modifications to PluresDB remain open source. See [LICENSE](LICENSE) for details.
|
|
303
|
+
|
|
304
|
+
## 🆘 Support
|
|
305
|
+
|
|
306
|
+
- **Issues**: [GitHub Issues](https://github.com/plures/pluresdb/issues)
|
|
307
|
+
- **Discussions**: [GitHub Discussions](https://github.com/plures/pluresdb/discussions)
|
|
308
|
+
|
|
309
|
+
For security issues, please see our [Security Policy](SECURITY.md).
|
|
310
|
+
|
|
311
|
+
## 🙏 Acknowledgments
|
|
312
|
+
|
|
313
|
+
- Built with [Deno](https://deno.land/)
|
|
314
|
+
- Inspired by [Gun.js](https://gun.eco/)
|
|
315
|
+
- Web UI built with [Svelte](https://svelte.dev/)
|
|
316
|
+
- Vector search powered by [HNSW](https://github.com/nmslib/hnswlib)
|
|
317
|
+
|
|
318
|
+
---
|
|
319
|
+
|
|
320
|
+
**Ready to build the future of local-first applications?** 🚀
|
|
321
|
+
|
|
322
|
+
[Get Started](packaging/INSTALLATION.md) | [View Examples](examples/) | [GitHub Discussions](https://github.com/plures/pluresdb/discussions)
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"fileNames":["../node_modules/typescript/lib/lib.es5.d.ts","../node_modules/typescript/lib/lib.es2015.d.ts","../node_modules/typescript/lib/lib.es2016.d.ts","../node_modules/typescript/lib/lib.es2017.d.ts","../node_modules/typescript/lib/lib.es2018.d.ts","../node_modules/typescript/lib/lib.es2019.d.ts","../node_modules/typescript/lib/lib.es2020.d.ts","../node_modules/typescript/lib/lib.es2021.d.ts","../node_modules/typescript/lib/lib.es2022.d.ts","../node_modules/typescript/lib/lib.es2015.core.d.ts","../node_modules/typescript/lib/lib.es2015.collection.d.ts","../node_modules/typescript/lib/lib.es2015.generator.d.ts","../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../node_modules/typescript/lib/lib.es2015.promise.d.ts","../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../node_modules/typescript/lib/lib.es2016.intl.d.ts","../node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../node_modules/typescript/lib/lib.es2017.date.d.ts","../node_modules/typescript/lib/lib.es2017.object.d.ts","../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2017.string.d.ts","../node_modules/typescript/lib/lib.es2017.intl.d.ts","../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../node_modules/typescript/lib/lib.es2018.intl.d.ts","../node_modules/typescript/lib/lib.es2018.promise.d.ts","../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../node_modules/typescript/lib/lib.es2019.array.d.ts","../node_modules/typescript/lib/lib.es2019.object.d.ts","../node_modules/typescript/lib/lib.es2019.string.d.ts","../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../node_modules/typescript/lib/lib.es2019.intl.d.ts","../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../node_modules/typescript/lib/lib.es2020.date.d.ts","../node_modules/typescript/lib/lib.es2020.promise.d.ts","../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2020.string.d.ts","../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2020.intl.d.ts","../node_modules/typescript/lib/lib.es2020.number.d.ts","../node_modules/typescript/lib/lib.es2021.promise.d.ts","../node_modules/typescript/lib/lib.es2021.string.d.ts","../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../node_modules/typescript/lib/lib.es2021.intl.d.ts","../node_modules/typescript/lib/lib.es2022.array.d.ts","../node_modules/typescript/lib/lib.es2022.error.d.ts","../node_modules/typescript/lib/lib.es2022.intl.d.ts","../node_modules/typescript/lib/lib.es2022.object.d.ts","../node_modules/typescript/lib/lib.es2022.string.d.ts","../node_modules/typescript/lib/lib.es2022.regexp.d.ts","../node_modules/typescript/lib/lib.decorators.d.ts","../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../src/types/node-types.ts","../src/vscode/extension.ts","../src/node-index.ts","../src/types/index.ts","../src/node-wrapper.ts","../src/cli.ts","../node_modules/@types/node/compatibility/disposable.d.ts","../node_modules/@types/node/compatibility/indexable.d.ts","../node_modules/@types/node/compatibility/iterators.d.ts","../node_modules/@types/node/compatibility/index.d.ts","../node_modules/@types/node/globals.typedarray.d.ts","../node_modules/@types/node/buffer.buffer.d.ts","../node_modules/@types/node/globals.d.ts","../node_modules/@types/node/web-globals/abortcontroller.d.ts","../node_modules/@types/node/web-globals/domexception.d.ts","../node_modules/@types/node/web-globals/events.d.ts","../node_modules/undici-types/header.d.ts","../node_modules/undici-types/readable.d.ts","../node_modules/undici-types/file.d.ts","../node_modules/undici-types/fetch.d.ts","../node_modules/undici-types/formdata.d.ts","../node_modules/undici-types/connector.d.ts","../node_modules/undici-types/client.d.ts","../node_modules/undici-types/errors.d.ts","../node_modules/undici-types/dispatcher.d.ts","../node_modules/undici-types/global-dispatcher.d.ts","../node_modules/undici-types/global-origin.d.ts","../node_modules/undici-types/pool-stats.d.ts","../node_modules/undici-types/pool.d.ts","../node_modules/undici-types/handlers.d.ts","../node_modules/undici-types/balanced-pool.d.ts","../node_modules/undici-types/agent.d.ts","../node_modules/undici-types/mock-interceptor.d.ts","../node_modules/undici-types/mock-agent.d.ts","../node_modules/undici-types/mock-client.d.ts","../node_modules/undici-types/mock-pool.d.ts","../node_modules/undici-types/mock-errors.d.ts","../node_modules/undici-types/proxy-agent.d.ts","../node_modules/undici-types/env-http-proxy-agent.d.ts","../node_modules/undici-types/retry-handler.d.ts","../node_modules/undici-types/retry-agent.d.ts","../node_modules/undici-types/api.d.ts","../node_modules/undici-types/interceptors.d.ts","../node_modules/undici-types/util.d.ts","../node_modules/undici-types/cookies.d.ts","../node_modules/undici-types/patch.d.ts","../node_modules/undici-types/websocket.d.ts","../node_modules/undici-types/eventsource.d.ts","../node_modules/undici-types/filereader.d.ts","../node_modules/undici-types/diagnostics-channel.d.ts","../node_modules/undici-types/content-type.d.ts","../node_modules/undici-types/cache.d.ts","../node_modules/undici-types/index.d.ts","../node_modules/@types/node/web-globals/fetch.d.ts","../node_modules/@types/node/assert.d.ts","../node_modules/@types/node/assert/strict.d.ts","../node_modules/@types/node/async_hooks.d.ts","../node_modules/@types/node/buffer.d.ts","../node_modules/@types/node/child_process.d.ts","../node_modules/@types/node/cluster.d.ts","../node_modules/@types/node/console.d.ts","../node_modules/@types/node/constants.d.ts","../node_modules/@types/node/crypto.d.ts","../node_modules/@types/node/dgram.d.ts","../node_modules/@types/node/diagnostics_channel.d.ts","../node_modules/@types/node/dns.d.ts","../node_modules/@types/node/dns/promises.d.ts","../node_modules/@types/node/domain.d.ts","../node_modules/@types/node/events.d.ts","../node_modules/@types/node/fs.d.ts","../node_modules/@types/node/fs/promises.d.ts","../node_modules/@types/node/http.d.ts","../node_modules/@types/node/http2.d.ts","../node_modules/@types/node/https.d.ts","../node_modules/@types/node/inspector.generated.d.ts","../node_modules/@types/node/module.d.ts","../node_modules/@types/node/net.d.ts","../node_modules/@types/node/os.d.ts","../node_modules/@types/node/path.d.ts","../node_modules/@types/node/perf_hooks.d.ts","../node_modules/@types/node/process.d.ts","../node_modules/@types/node/punycode.d.ts","../node_modules/@types/node/querystring.d.ts","../node_modules/@types/node/readline.d.ts","../node_modules/@types/node/readline/promises.d.ts","../node_modules/@types/node/repl.d.ts","../node_modules/@types/node/sea.d.ts","../node_modules/@types/node/stream.d.ts","../node_modules/@types/node/stream/promises.d.ts","../node_modules/@types/node/stream/consumers.d.ts","../node_modules/@types/node/stream/web.d.ts","../node_modules/@types/node/string_decoder.d.ts","../node_modules/@types/node/test.d.ts","../node_modules/@types/node/timers.d.ts","../node_modules/@types/node/timers/promises.d.ts","../node_modules/@types/node/tls.d.ts","../node_modules/@types/node/trace_events.d.ts","../node_modules/@types/node/tty.d.ts","../node_modules/@types/node/url.d.ts","../node_modules/@types/node/util.d.ts","../node_modules/@types/node/v8.d.ts","../node_modules/@types/node/vm.d.ts","../node_modules/@types/node/wasi.d.ts","../node_modules/@types/node/worker_threads.d.ts","../node_modules/@types/node/zlib.d.ts","../node_modules/@types/node/index.d.ts","../node_modules/@types/connect/index.d.ts","../node_modules/@types/body-parser/index.d.ts","../node_modules/@types/cors/index.d.ts","../node_modules/@types/estree/index.d.ts","../node_modules/@types/mime/index.d.ts","../node_modules/@types/send/index.d.ts","../node_modules/@types/qs/index.d.ts","../node_modules/@types/range-parser/index.d.ts","../node_modules/@types/express-serve-static-core/index.d.ts","../node_modules/@types/http-errors/index.d.ts","../node_modules/@types/serve-static/index.d.ts","../node_modules/@types/express/index.d.ts","../node_modules/@types/json-schema/index.d.ts","../node_modules/@types/json5/index.d.ts","../node_modules/@types/vscode/index.d.ts","../node_modules/@types/ws/index.d.ts"],"fileIdsList":[[69,115,129,163,164],[69,115,129,163],[69,115],[69,115,126,129,163,169,170,171],[69,115,165,170,172,174],[69,112,115],[69,114,115],[115],[69,115,120,148],[69,115,116,121,126,134,145,156],[69,115,116,117,126,134],[64,65,66,69,115],[69,115,118,157],[69,115,119,120,127,135],[69,115,120,145,153],[69,115,121,123,126,134],[69,114,115,122],[69,115,123,124],[69,115,125,126],[69,114,115,126],[69,115,126,127,128,145,156],[69,115,126,127,128,141,145,148],[69,115,123,126,129,134,145,156],[69,115,126,127,129,130,134,145,153,156],[69,115,129,131,145,153,156],[67,68,69,70,71,72,73,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162],[69,115,126,132],[69,115,133,156,161],[69,115,123,126,134,145],[69,115,135],[69,115,136],[69,114,115,137],[69,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162],[69,115,139],[69,115,140],[69,115,126,141,142],[69,115,141,143,157,159],[69,115,126,145,146,148],[69,115,147,148],[69,115,145,146],[69,115,148],[69,115,149],[69,112,115,145,150],[69,115,126,151,152],[69,115,151,152],[69,115,120,134,145,153],[69,115,154],[69,115,134,155],[69,115,129,140,156],[69,115,120,157],[69,115,145,158],[69,115,133,159],[69,115,160],[69,110,115],[69,110,115,126,128,137,145,148,156,159,161],[69,115,145,162],[69,115,127,145,163,168],[69,115,129,163,169,173],[69,115,126,129,131,134,145,153,156,162,163],[69,82,86,115,156],[69,82,115,145,156],[69,77,115],[69,79,82,115,153,156],[69,115,134,153],[69,115,163],[69,77,115,163],[69,79,82,115,134,156],[69,74,75,78,81,115,126,145,156],[69,82,89,115],[69,74,80,115],[69,82,103,104,115],[69,78,82,115,148,156,163],[69,103,115,163],[69,76,77,115,163],[69,82,115],[69,76,77,78,79,80,81,82,83,84,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,104,105,106,107,108,109,115],[69,82,97,115],[69,82,89,90,115],[69,80,82,90,91,115],[69,81,115],[69,74,77,82,115],[69,82,86,90,91,115],[69,86,115],[69,80,82,85,115,156],[69,74,79,82,89,115],[69,115,145],[69,77,82,103,115,161,163],[62,69,115,127,136],[58,59,69,115,116,126,127,135,136,138],[61,69,115,116,126,127,135,136],[58,60,69,115,136]],"fileInfos":[{"version":"c430d44666289dae81f30fa7b2edebf186ecc91a2d4c71266ea6ae76388792e1","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","impliedFormat":1},{"version":"ee7bad0c15b58988daa84371e0b89d313b762ab83cb5b31b8a2d1162e8eb41c2","impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"0559b1f683ac7505ae451f9a96ce4c3c92bdc71411651ca6ddb0e88baaaad6a3","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"fb0f136d372979348d59b3f5020b4cdb81b5504192b1cacff5d1fbba29378aa1","affectsGlobalScope":true,"impliedFormat":1},{"version":"d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"a680117f487a4d2f30ea46f1b4b7f58bef1480456e18ba53ee85c2746eeca012","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"d6d7ae4d1f1f3772e2a3cde568ed08991a8ae34a080ff1151af28b7f798e22ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"52ada8e0b6e0482b728070b7639ee42e83a9b1c22d205992756fe020fd9f4a47","affectsGlobalScope":true,"impliedFormat":1},{"version":"3bdefe1bfd4d6dee0e26f928f93ccc128f1b64d5d501ff4a8cf3c6371200e5e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"639e512c0dfc3fad96a84caad71b8834d66329a1f28dc95e3946c9b58176c73a","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true,"impliedFormat":1},{"version":"959d36cddf5e7d572a65045b876f2956c973a586da58e5d26cde519184fd9b8a","affectsGlobalScope":true,"impliedFormat":1},{"version":"965f36eae237dd74e6cca203a43e9ca801ce38824ead814728a2807b1910117d","affectsGlobalScope":true,"impliedFormat":1},{"version":"3925a6c820dcb1a06506c90b1577db1fdbf7705d65b62b99dce4be75c637e26b","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a3d63ef2b853447ec4f749d3f368ce642264246e02911fcb1590d8c161b8005","affectsGlobalScope":true,"impliedFormat":1},{"version":"8cdf8847677ac7d20486e54dd3fcf09eda95812ac8ace44b4418da1bbbab6eb8","affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true,"impliedFormat":1},{"version":"b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"f418ef8cc1dea2221229fd7dabcde7b1d9fb880c497c80f7e9b8885fa3abf112","signature":"0c01b374593084cf9c79d9de6d9200c69161fb9c8e1b52909202c79d3303a9f9"},{"version":"ea3a78bafa6a8ded3956a0fed45c69e3a8e3f33992919a57045cdc7db02f8d5f","signature":"dc916e2a4affd8a9b869498cb6185691ebc66500f8f3c49b3d80bc91c54353ba"},{"version":"50adeb171087b8ee39205b4bfa1b43ed910cea0ba3ce4124a36c9bd4676e5aba","signature":"29d10c307e6714e02dacc8452a3df5fd434f69a1b2d96732ee652a80840c08b2"},{"version":"d9d71dd78cdad0ba54747b05d81c590bc8b9f63a958e1e79c066f39918b7925a","signature":"4b6d45b9585e924547324ba400ba1b79cab92dc8e285987551409101ffefb601"},{"version":"5f316367e67821db4f5c4e6b087f3674ca56cd88ebdef160de98228eb9d4fee4","signature":"64402f8e9e44251160da5eba6818d78e5cc5de0a970ba6986a3014f0118e6faa"},{"version":"7bd904a91a3da32d7a51717f66b6534035dae15e2ed9a2b8a982f2292326210d","signature":"fe07acf00866a96f9f923514d12053332faf9364947bf7de840f57afa4e08364"},{"version":"70521b6ab0dcba37539e5303104f29b721bfb2940b2776da4cc818c07e1fefc1","affectsGlobalScope":true,"impliedFormat":1},{"version":"ab41ef1f2cdafb8df48be20cd969d875602483859dc194e9c97c8a576892c052","affectsGlobalScope":true,"impliedFormat":1},{"version":"d153a11543fd884b596587ccd97aebbeed950b26933ee000f94009f1ab142848","affectsGlobalScope":true,"impliedFormat":1},{"version":"21d819c173c0cf7cc3ce57c3276e77fd9a8a01d35a06ad87158781515c9a438a","impliedFormat":1},{"version":"a79e62f1e20467e11a904399b8b18b18c0c6eea6b50c1168bf215356d5bebfaf","affectsGlobalScope":true,"impliedFormat":1},{"version":"49a5a44f2e68241a1d2bd9ec894535797998841c09729e506a7cbfcaa40f2180","affectsGlobalScope":true,"impliedFormat":1},{"version":"2e2e0a2dfc6bfabffacba3cc3395aa8197f30893942a2625bd9923ea34a27a3c","affectsGlobalScope":true,"impliedFormat":1},{"version":"1db0b7dca579049ca4193d034d835f6bfe73096c73663e5ef9a0b5779939f3d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"9798340ffb0d067d69b1ae5b32faa17ab31b82466a3fc00d8f2f2df0c8554aaa","affectsGlobalScope":true,"impliedFormat":1},{"version":"f26b11d8d8e4b8028f1c7d618b22274c892e4b0ef5b3678a8ccbad85419aef43","affectsGlobalScope":true,"impliedFormat":1},{"version":"5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","impliedFormat":1},{"version":"763fe0f42b3d79b440a9b6e51e9ba3f3f91352469c1e4b3b67bfa4ff6352f3f4","impliedFormat":1},{"version":"25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","impliedFormat":1},{"version":"c464d66b20788266e5353b48dc4aa6bc0dc4a707276df1e7152ab0c9ae21fad8","impliedFormat":1},{"version":"78d0d27c130d35c60b5e5566c9f1e5be77caf39804636bc1a40133919a949f21","impliedFormat":1},{"version":"c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","impliedFormat":1},{"version":"1d6e127068ea8e104a912e42fc0a110e2aa5a66a356a917a163e8cf9a65e4a75","impliedFormat":1},{"version":"5ded6427296cdf3b9542de4471d2aa8d3983671d4cac0f4bf9c637208d1ced43","impliedFormat":1},{"version":"7f182617db458e98fc18dfb272d40aa2fff3a353c44a89b2c0ccb3937709bfb5","impliedFormat":1},{"version":"cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","impliedFormat":1},{"version":"385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","impliedFormat":1},{"version":"9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","impliedFormat":1},{"version":"0b8a9268adaf4da35e7fa830c8981cfa22adbbe5b3f6f5ab91f6658899e657a7","impliedFormat":1},{"version":"11396ed8a44c02ab9798b7dca436009f866e8dae3c9c25e8c1fbc396880bf1bb","impliedFormat":1},{"version":"ba7bc87d01492633cb5a0e5da8a4a42a1c86270e7b3d2dea5d156828a84e4882","impliedFormat":1},{"version":"4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","impliedFormat":1},{"version":"c21dc52e277bcfc75fac0436ccb75c204f9e1b3fa5e12729670910639f27343e","impliedFormat":1},{"version":"13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","impliedFormat":1},{"version":"9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","impliedFormat":1},{"version":"4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","impliedFormat":1},{"version":"24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","impliedFormat":1},{"version":"ea0148f897b45a76544ae179784c95af1bd6721b8610af9ffa467a518a086a43","impliedFormat":1},{"version":"24c6a117721e606c9984335f71711877293a9651e44f59f3d21c1ea0856f9cc9","impliedFormat":1},{"version":"dd3273ead9fbde62a72949c97dbec2247ea08e0c6952e701a483d74ef92d6a17","impliedFormat":1},{"version":"405822be75ad3e4d162e07439bac80c6bcc6dbae1929e179cf467ec0b9ee4e2e","impliedFormat":1},{"version":"0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","impliedFormat":1},{"version":"e61be3f894b41b7baa1fbd6a66893f2579bfad01d208b4ff61daef21493ef0a8","impliedFormat":1},{"version":"bd0532fd6556073727d28da0edfd1736417a3f9f394877b6d5ef6ad88fba1d1a","impliedFormat":1},{"version":"89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","impliedFormat":1},{"version":"615ba88d0128ed16bf83ef8ccbb6aff05c3ee2db1cc0f89ab50a4939bfc1943f","impliedFormat":1},{"version":"a4d551dbf8746780194d550c88f26cf937caf8d56f102969a110cfaed4b06656","impliedFormat":1},{"version":"8bd86b8e8f6a6aa6c49b71e14c4ffe1211a0e97c80f08d2c8cc98838006e4b88","impliedFormat":1},{"version":"317e63deeb21ac07f3992f5b50cdca8338f10acd4fbb7257ebf56735bf52ab00","impliedFormat":1},{"version":"4732aec92b20fb28c5fe9ad99521fb59974289ed1e45aecb282616202184064f","impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","impliedFormat":1},{"version":"bf67d53d168abc1298888693338cb82854bdb2e69ef83f8a0092093c2d562107","impliedFormat":1},{"version":"2cbe0621042e2a68c7cbce5dfed3906a1862a16a7d496010636cdbdb91341c0f","affectsGlobalScope":true,"impliedFormat":1},{"version":"e2677634fe27e87348825bb041651e22d50a613e2fdf6a4a3ade971d71bac37e","impliedFormat":1},{"version":"7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","impliedFormat":1},{"version":"8c0bcd6c6b67b4b503c11e91a1fb91522ed585900eab2ab1f61bba7d7caa9d6f","impliedFormat":1},{"version":"567b7f607f400873151d7bc63a049514b53c3c00f5f56e9e95695d93b66a138e","affectsGlobalScope":true,"impliedFormat":1},{"version":"823f9c08700a30e2920a063891df4e357c64333fdba6889522acc5b7ae13fc08","impliedFormat":1},{"version":"84c1930e33d1bb12ad01bcbe11d656f9646bd21b2fb2afd96e8e10615a021aef","impliedFormat":1},{"version":"35ec8b6760fd7138bbf5809b84551e31028fb2ba7b6dc91d95d098bf212ca8b4","affectsGlobalScope":true,"impliedFormat":1},{"version":"5524481e56c48ff486f42926778c0a3cce1cc85dc46683b92b1271865bcf015a","impliedFormat":1},{"version":"4b87f767c7bc841511113c876a6b8bf1fd0cb0b718c888ad84478b372ec486b1","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d04e3640dd9eb67f7f1e5bd3d0bf96c784666f7aefc8ac1537af6f2d38d4c29","impliedFormat":1},{"version":"9d19808c8c291a9010a6c788e8532a2da70f811adb431c97520803e0ec649991","impliedFormat":1},{"version":"2bf469abae4cc9c0f340d4e05d9d26e37f936f9c8ca8f007a6534f109dcc77e4","impliedFormat":1},{"version":"4aacb0dd020eeaef65426153686cc639a78ec2885dc72ad220be1d25f1a439df","impliedFormat":1},{"version":"f0bd7e6d931657b59605c44112eaf8b980ba7f957a5051ed21cb93d978cf2f45","impliedFormat":1},{"version":"1d140fe7e071ea06038b6c5e01fea83f72d9d6d68e0d606a3d824323f5133388","affectsGlobalScope":true,"impliedFormat":1},{"version":"4c21aaa8257d7950a5b75a251d9075b6a371208fc948c9c8402f6690ef3b5b55","impliedFormat":1},{"version":"685657a3ec619ef12aa7f754eee3b28598d3bf9749da89839a72a343fffef5ff","impliedFormat":1},{"version":"0c52340a45f6a46b67d766210f921aed61a5f1defe9e708fa5d3389bdf743d98","impliedFormat":1},{"version":"de735eca2c51dd8b860254e9fdb6d9ec19fe402dfe597c23090841ce3937cfc5","impliedFormat":1},{"version":"fed70ffbe859d54d8c7e1ef8cc2bc38af99b00a273ebb69ac293d2cb656210bd","impliedFormat":1},{"version":"5650cf3dace09e7c25d384e3e6b818b938f68f4e8de96f52d9c5a1b3db068e86","impliedFormat":1},{"version":"1354ca5c38bd3fd3836a68e0f7c9f91f172582ba30ab15bb8c075891b91502b7","affectsGlobalScope":true,"impliedFormat":1},{"version":"5155da3047ef977944d791a2188ff6e6c225f6975cc1910ab7bb6838ab84cede","impliedFormat":1},{"version":"93f437e1398a4f06a984f441f7fa7a9f0535c04399619b5c22e0b87bdee182cb","impliedFormat":1},{"version":"afbe24ab0d74694372baa632ecb28bb375be53f3be53f9b07ecd7fc994907de5","impliedFormat":1},{"version":"e16d218a30f6a6810b57f7e968124eaa08c7bb366133ea34bbf01e7cd6b8c0ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb8692dea24c27821f77e397272d9ed2eda0b95e4a75beb0fdda31081d15a8ae","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e043a1bc8fbf2a255bccf9bf27e0f1caf916c3b0518ea34aa72357c0afd42ec","impliedFormat":1},{"version":"b4f70ec656a11d570e1a9edce07d118cd58d9760239e2ece99306ee9dfe61d02","impliedFormat":1},{"version":"3bc2f1e2c95c04048212c569ed38e338873f6a8593930cf5a7ef24ffb38fc3b6","impliedFormat":1},{"version":"8145e07aad6da5f23f2fcd8c8e4c5c13fb26ee986a79d03b0829b8fce152d8b2","impliedFormat":1},{"version":"f9d9d753d430ed050dc1bf2667a1bab711ccbb1c1507183d794cc195a5b085cc","impliedFormat":1},{"version":"9eece5e586312581ccd106d4853e861aaaa1a39f8e3ea672b8c3847eedd12f6e","impliedFormat":1},{"version":"5b6844ad931dcc1d3aca53268f4bd671428421464b1286746027aede398094f2","impliedFormat":1},{"version":"37ba7b45141a45ce6e80e66f2a96c8a5ab1bcef0fc2d0f56bb58df96ec67e972","impliedFormat":1},{"version":"125d792ec6c0c0f657d758055c494301cc5fdb327d9d9d5960b3f129aff76093","impliedFormat":1},{"version":"0225ecb9ed86bdb7a2c7fd01f1556906902929377b44483dc4b83e03b3ef227d","affectsGlobalScope":true,"impliedFormat":1},{"version":"1851a3b4db78664f83901bb9cac9e45e03a37bb5933cc5bf37e10bb7e91ab4eb","impliedFormat":1},{"version":"5eab9b3dc9b34f185417342436ec3f106898da5f4801992d8ff38ab3aff346b5","impliedFormat":1},{"version":"12ed4559eba17cd977aa0db658d25c4047067444b51acfdcbf38470630642b23","affectsGlobalScope":true,"impliedFormat":1},{"version":"f3ffabc95802521e1e4bcba4c88d8615176dc6e09111d920c7a213bdda6e1d65","impliedFormat":1},{"version":"e31e51c55800014d926e3f74208af49cb7352803619855c89296074d1ecbb524","impliedFormat":1},{"version":"ae56f65caf3be91108707bd8dfbccc2a57a91feb5daabf7165a06a945545ed26","impliedFormat":1},{"version":"a136d5de521da20f31631a0a96bf712370779d1c05b7015d7019a9b2a0446ca9","impliedFormat":1},{"version":"dfb96ba5177b68003deec9e773c47257da5c4c8a74053d8956389d832df72002","affectsGlobalScope":true,"impliedFormat":1},{"version":"92d3070580cf72b4bb80959b7f16ede9a3f39e6f4ef2ac87cfa4561844fdc69f","affectsGlobalScope":true,"impliedFormat":1},{"version":"d3dffd70e6375b872f0b4e152de4ae682d762c61a24881ecc5eb9f04c5caf76f","impliedFormat":1},{"version":"613deebaec53731ff6b74fe1a89f094b708033db6396b601df3e6d5ab0ec0a47","impliedFormat":1},{"version":"d91a7d8b5655c42986f1bdfe2105c4408f472831c8f20cf11a8c3345b6b56c8c","impliedFormat":1},{"version":"ed59add13139f84da271cafd32e2171876b0a0af2f798d0c663e8eeb867732cf","affectsGlobalScope":true,"impliedFormat":1},{"version":"e8a979b8af001c9fc2e774e7809d233c8ca955a28756f52ee5dee88ccb0611d2","impliedFormat":1},{"version":"b1810689b76fd473bd12cc9ee219f8e62f54a7d08019a235d07424afbf074d25","impliedFormat":1},{"version":"104c67f0da1bdf0d94865419247e20eded83ce7f9911a1aa75fc675c077ca66e","impliedFormat":1},{"version":"cc0d0b339f31ce0ab3b7a5b714d8e578ce698f1e13d7f8c60bfb766baeb1d35c","impliedFormat":1},{"version":"25be1eb939c9c63242c7a45446edb20c40541da967f43f1aa6a00ed53c0552db","impliedFormat":1},{"version":"151ff381ef9ff8da2da9b9663ebf657eac35c4c9a19183420c05728f31a6761d","impliedFormat":1},{"version":"d3f2d715f57df3f04bf7b16dde01dec10366f64fce44503c92b8f78f614c1769","impliedFormat":1},{"version":"b78cd10245a90e27e62d0558564f5d9a16576294eee724a59ae21b91f9269e4a","impliedFormat":1},{"version":"baac9896d29bcc55391d769e408ff400d61273d832dd500f21de766205255acb","impliedFormat":1},{"version":"2f5747b1508ccf83fad0c251ba1e5da2f5a30b78b09ffa1cfaf633045160afed","impliedFormat":1},{"version":"a45c25e77c911c1f2a04cade78f6f42b4d7d896a3882d4e226efd3a3fcd5f2c4","affectsGlobalScope":true,"impliedFormat":1},{"version":"b71c603a539078a5e3a039b20f2b0a0d1708967530cf97dec8850a9ca45baa2b","impliedFormat":1},{"version":"0e13570a7e86c6d83dd92e81758a930f63747483e2cd34ef36fcdb47d1f9726a","impliedFormat":1},{"version":"5c45abf1e13e4463eacfd5dedda06855da8748a6a6cb3334f582b52e219acc04","impliedFormat":1},{"version":"f3d8c757e148ad968f0d98697987db363070abada5f503da3c06aefd9d4248c1","impliedFormat":1},{"version":"96d14f21b7652903852eef49379d04dbda28c16ed36468f8c9fa08f7c14c9538","impliedFormat":1},{"version":"69e01ef9103d147fd603aef2b465b2bdb1e37ea287828d460d1fbdc4485d28d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"1ba59c8bbeed2cb75b239bb12041582fa3e8ef32f8d0bd0ec802e38442d3f317","impliedFormat":1}],"root":[[58,60],62,63],"options":{"allowJs":true,"allowSyntheticDefaultImports":true,"checkJs":false,"declaration":true,"declarationMap":true,"emitDecoratorMetadata":true,"esModuleInterop":true,"experimentalDecorators":true,"module":1,"outDir":"./","rootDir":"../src","skipLibCheck":true,"sourceMap":true,"strict":true,"target":9,"tsBuildInfoFile":"./.tsbuildinfo"},"referencedMap":[[165,1],[164,2],[166,2],[167,3],[172,4],[175,5],[173,3],[176,3],[177,3],[168,3],[112,6],[113,6],[114,7],[69,8],[115,9],[116,10],[117,11],[64,3],[67,12],[65,3],[66,3],[118,13],[119,14],[120,15],[121,16],[122,17],[123,18],[124,18],[125,19],[126,20],[127,21],[128,22],[70,3],[68,3],[129,23],[130,24],[131,25],[163,26],[132,27],[133,28],[134,29],[135,30],[136,31],[137,32],[138,33],[139,34],[140,35],[141,36],[142,36],[143,37],[144,3],[145,38],[147,39],[146,40],[148,41],[149,42],[150,43],[151,44],[152,45],[153,46],[154,47],[155,48],[156,49],[157,50],[158,51],[159,52],[160,53],[71,3],[72,3],[73,3],[111,54],[161,55],[162,56],[170,3],[171,3],[169,57],[174,58],[178,3],[179,59],[56,3],[57,3],[11,3],[10,3],[2,3],[12,3],[13,3],[14,3],[15,3],[16,3],[17,3],[18,3],[19,3],[3,3],[20,3],[21,3],[4,3],[22,3],[26,3],[23,3],[24,3],[25,3],[27,3],[28,3],[29,3],[5,3],[30,3],[31,3],[32,3],[33,3],[6,3],[37,3],[34,3],[35,3],[36,3],[38,3],[7,3],[39,3],[44,3],[45,3],[40,3],[41,3],[42,3],[43,3],[8,3],[49,3],[46,3],[47,3],[48,3],[50,3],[9,3],[51,3],[52,3],[53,3],[55,3],[54,3],[1,3],[89,60],[99,61],[88,60],[109,62],[80,63],[79,64],[108,65],[102,66],[107,67],[82,68],[96,69],[81,70],[105,71],[77,72],[76,65],[106,73],[78,74],[83,75],[84,3],[87,75],[74,3],[110,76],[100,77],[91,78],[92,79],[94,80],[90,81],[93,82],[103,65],[85,83],[86,84],[95,85],[75,86],[98,77],[97,75],[101,3],[104,87],[63,88],[60,89],[62,90],[61,3],[58,3],[59,91]],"version":"5.9.3"}
|
package/dist/cli.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"cli.d.ts","sourceRoot":"","sources":["../src/cli.ts"],"names":[],"mappings":";AAEA;;;GAGG"}
|