-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 899 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 899 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{
"name": "@phantom-pm/knowledge",
"version": "2.0.0",
"description": "Phantom Knowledge Layer - Vector embeddings, RAG, and connectors",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"phantom-knowledge": "./dist/cli/index.js"
},
"scripts": {
"build": "tsc",
"build:cli": "tsc -p cli/tsconfig.json",
"dev": "tsc -w",
"test": "vitest",
"bench": "npx tsx bench.ts",
"lint": "eslint src --ext .ts",
"format": "prettier --write \"src/**/*.ts\""
},
"dependencies": {
"commander": "^11.0.0",
"dotenv": "^16.0.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"typescript": "^5.3.0",
"vitest": "^1.0.0",
"eslint": "^8.0.0",
"prettier": "^3.0.0"
},
"keywords": ["phantom", "knowledge", "rag", "embeddings", "vector", "ai"],
"author": "Adarsh Agrahari",
"license": "MIT"
}