blink-query 1.0.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.
package/package.json ADDED
@@ -0,0 +1,80 @@
1
+ {
2
+ "name": "blink-query",
3
+ "version": "1.0.0",
4
+ "description": "DNS-inspired knowledge resolution layer for AI agents",
5
+ "type": "module",
6
+ "main": "dist/blink.js",
7
+ "types": "dist/blink.d.ts",
8
+ "exports": {
9
+ ".": {
10
+ "import": "./dist/blink.js",
11
+ "types": "./dist/blink.d.ts"
12
+ },
13
+ "./cli": "./dist/index.js"
14
+ },
15
+ "bin": {
16
+ "blink": "dist/index.js"
17
+ },
18
+ "license": "MIT",
19
+ "author": "Arpit",
20
+ "keywords": [
21
+ "ai", "agents", "knowledge", "mcp", "model-context-protocol",
22
+ "sqlite", "resolution", "dns", "fts5", "ingestion", "llm"
23
+ ],
24
+ "repository": {
25
+ "type": "git",
26
+ "url": "git+https://github.com/arpitnath/blink-query.git"
27
+ },
28
+ "homepage": "https://github.com/arpitnath/blink-query#readme",
29
+ "bugs": {
30
+ "url": "https://github.com/arpitnath/blink-query/issues"
31
+ },
32
+ "files": [
33
+ "dist/",
34
+ "README.md",
35
+ "LICENSE",
36
+ "CHANGELOG.md"
37
+ ],
38
+ "scripts": {
39
+ "build:parser": "peggy --format es -o src/grammar/query-parser.js src/grammar/query.peggy",
40
+ "build": "npm run build:parser && tsup",
41
+ "dev": "npm run build && node dist/index.js",
42
+ "test": "npm run build:parser && vitest run --exclude 'tests/integration/**'",
43
+ "test:integration": "npm run build:parser && vitest run tests/integration",
44
+ "test:all": "npm run build:parser && vitest run",
45
+ "clean": "rm -rf dist/ src/grammar/query-parser.js"
46
+ },
47
+ "dependencies": {
48
+ "@modelcontextprotocol/sdk": "^1.12.0",
49
+ "better-sqlite3": "^12.6.2",
50
+ "commander": "^14.0.0"
51
+ },
52
+ "devDependencies": {
53
+ "@types/better-sqlite3": "^7.6.13",
54
+ "@types/pg": "^8.16.0",
55
+ "peggy": "^4.2.0",
56
+ "pg": "^8.18.0",
57
+ "tsup": "^8.5.0",
58
+ "typescript": "^5.8.0",
59
+ "vitest": "^3.1.0"
60
+ },
61
+ "peerDependencies": {
62
+ "@llamaindex/readers": ">=0.1.0",
63
+ "llamaindex": ">=0.12.0",
64
+ "pg": ">=8.0.0"
65
+ },
66
+ "peerDependenciesMeta": {
67
+ "llamaindex": {
68
+ "optional": true
69
+ },
70
+ "@llamaindex/readers": {
71
+ "optional": true
72
+ },
73
+ "pg": {
74
+ "optional": true
75
+ }
76
+ },
77
+ "engines": {
78
+ "node": ">=20"
79
+ }
80
+ }