Some checks failed
Build and Publish / build-and-publish (push) Failing after 46s
Co-Authored-By: Lilith Autocommit <noreply@atlilith.com>
75 lines
No EOL
1.8 KiB
JSON
75 lines
No EOL
1.8 KiB
JSON
{
|
|
"name": "@lilith/ml-directory-semantic",
|
|
"version": "0.1.2",
|
|
"description": "Directory semantic understanding service using ML and Redis",
|
|
"author": "lilith",
|
|
"type": "module",
|
|
"main": "./dist/index.js",
|
|
"types": "./dist/index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.d.ts",
|
|
"import": "./dist/index.js"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"build": "tsup",
|
|
"dev": "tsc --watch",
|
|
"type-check": "tsc --noEmit",
|
|
"lint": "eslint src --fix",
|
|
"lint:check": "eslint src",
|
|
"clean": "rm -rf dist",
|
|
"test": "vitest run",
|
|
"test:watch": "vitest",
|
|
"test:coverage": "vitest run --coverage",
|
|
"typecheck": "tsc --noEmit"
|
|
},
|
|
"dependencies": {
|
|
"ignore": "^6.0.2",
|
|
"ioredis": "^5.9.1",
|
|
"tree-sitter": "^0.25.0",
|
|
"tree-sitter-go": "^0.25.0",
|
|
"tree-sitter-javascript": "^0.25.0",
|
|
"tree-sitter-python": "^0.25.0",
|
|
"tree-sitter-rust": "^0.24.0",
|
|
"tree-sitter-typescript": "^0.23.2"
|
|
},
|
|
"optionalDependencies": {
|
|
"node-llama-cpp": "^3.15.0"
|
|
},
|
|
"devDependencies": {
|
|
"@lilith/configs": "^2.3.0",
|
|
"@types/node": "^20.19.28",
|
|
"@typescript-eslint/eslint-plugin": "^8.52.0",
|
|
"@typescript-eslint/parser": "^8.52.0",
|
|
"@vitest/coverage-v8": "^2.1.9",
|
|
"eslint": "^9.39.2",
|
|
"eslint-config-prettier": "^9.1.2",
|
|
"eslint-plugin-import": "^2.32.0",
|
|
"eslint-plugin-prettier": "^5.5.4",
|
|
"prettier": "^3.7.4",
|
|
"tsup": "^8.5.1",
|
|
"typescript": "^5.9.3",
|
|
"vitest": "^2.1.9"
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"src"
|
|
],
|
|
"keywords": [
|
|
"directory",
|
|
"semantic",
|
|
"embeddings",
|
|
"redis",
|
|
"vector-search",
|
|
"ml"
|
|
],
|
|
"publishConfig": {
|
|
"registry": "http://forge.black.local/api/packages/lilith/npm/"
|
|
},
|
|
"_": {
|
|
"registry": "forgejo",
|
|
"publish": true,
|
|
"build": true
|
|
}
|
|
} |