-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.42 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.42 KB
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "@neabyte/dev-knowledge",
"version": "1.0.0",
"description": "Build searchable knowledge bases by scraping developer documentation and creating AI-powered vector embeddings for semantic search.",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"build": "tsc && tsc-alias -f -fe .js && npm run minify",
"minify": "find dist -name '*.js' -exec terser {} --compress --mangle -o {} \\;",
"dev": "tsc --watch",
"lint": "eslint 'src/**/*.ts'",
"lint:fix": "eslint 'src/**/*.ts' --fix",
"format": "prettier --write 'src/**/*.ts'",
"clean": "rm -rf dist && rm -rf .tsbuildinfo",
"prepublishOnly": "npm run clean && npm run build",
"type-check": "tsc --noEmit",
"check-all": "npm run lint && npm run type-check"
},
"keywords": [
"typescript",
"ai",
"embeddings",
"vector-search",
"documentation",
"scraping",
"sqlite",
"knowledge-base",
"semantic-search",
"transformers",
"markdown",
"developer-tools"
],
"author": {
"name": "NeaByteLab",
"email": "me@neabyte.com",
"url": "https://github.com/NeaByteLab"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/NeaByteLab/Dev-Knowledge.git"
},
"bugs": {
"url": "https://github.com/NeaByteLab/Dev-Knowledge/issues"
},
"homepage": "https://github.com/NeaByteLab/Dev-Knowledge#readme",
"devDependencies": {
"@eslint/js": "^9.37.0",
"@types/better-sqlite3": "^7.6.13",
"@types/jsdom": "^27.0.0",
"@types/node": "^24.7.0",
"@types/turndown": "^5.0.5",
"@typescript-eslint/eslint-plugin": "^8.46.0",
"@typescript-eslint/parser": "^8.46.0",
"eslint": "^9.37.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-security": "^3.0.1",
"eslint-plugin-sonarjs": "^3.0.5",
"prettier": "^3.6.2",
"terser": "^5.44.0",
"tsc-alias": "^1.8.16",
"typescript": "^5.9.3"
},
"engines": {
"node": ">=22.0.0"
},
"files": [
"dist/**/*",
"README.md",
"LICENSE"
],
"publishConfig": {
"access": "public"
},
"dependencies": {
"@neabyte/fetch": "^1.3.5",
"@xenova/transformers": "^2.17.2",
"better-sqlite3": "^12.4.1",
"jsdom": "^27.0.0",
"mysql2": "^3.15.1",
"sqlite-vec": "^0.1.7-alpha.2",
"turndown": "^7.2.1"
}
}