-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 984 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 984 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
{
"name": "babel-memory",
"version": "2.0.0",
"description": "Language-aware preprocessing for AI memory systems. 27+ languages, zero required dependencies.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "bun build src/index.ts --outdir dist --target node",
"test": "bun test",
"prepublishOnly": "bun run build"
},
"keywords": ["ai-memory", "cjk", "multilingual", "rag", "bm25", "tokenizer", "language-detection", "stemming"],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/AliceLJY/babel-memory.git"
},
"dependencies": {},
"optionalDependencies": {
"jieba-wasm": "^2.2.0",
"@sglkc/kuromoji": "^1.1.0",
"wordcut": "^0.9.1",
"snowball-stemmers": "^0.6.0"
},
"devDependencies": {
"typescript": "^5.5.0",
"bun-types": "latest",
"jieba-wasm": "^2.2.0",
"@sglkc/kuromoji": "^1.1.0",
"wordcut": "^0.9.1",
"snowball-stemmers": "^0.6.0"
}
}