-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.04 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.04 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
{
"name": "qirrel",
"version": "0.2.1",
"description": "Qirrel is a sophisticated and extensible NLP library for comprehensive text processing, tokenization, and analysis.",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "tsc",
"typecheck": "tsc --noEmit",
"lint": "bun run typecheck",
"format:check": "node scripts/check-format.mjs",
"dev": "tsc --watch",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"bench:agent": "bun run bench/agent-native.bench.ts",
"bench:frameworks": "bun run bench/framework-comparison.bench.ts",
"bench:report": "bun run bench/report.bench.ts",
"mcp:start": "bun run src/bin/qirrel-mcp.ts",
"prepublishOnly": "bun run lint && bun run format:check && bun run build"
},
"bin": {
"qirrel-mcp": "./dist/bin/qirrel-mcp.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dev-dami/qirrel.git"
},
"keywords": [
"nlp",
"text-processing",
"tokenizer",
"parsing",
"natural-language-processing",
"text-analysis",
"typescript"
],
"author": "Damilare Osibanjo",
"license": "MIT",
"type": "commonjs",
"bugs": {
"url": "https://github.com/dev-dami/qirrel/issues"
},
"homepage": "https://github.com/dev-dami/qirrel#readme",
"dependencies": {
"compromise": "^14.14.5",
"emoji-regex": "^10.6.0",
"js-yaml": "^4.1.1",
"libphonenumber-js": "^1.12.31",
"lru-cache": "^11.2.4",
"tokenizers": "^0.13.3",
"uuid": "^13.0.0",
"validator": "^13.15.23"
},
"devDependencies": {
"@types/node": "^24.10.9",
"@types/emoji-regex": "^9.2.2",
"@types/jest": "^30.0.0",
"@types/js-yaml": "^4.0.9",
"@types/validator": "^13.15.10",
"@types/uuid": "^11.0.0",
"ai": "^5.0.82",
"jest": "^30.2.0",
"langchain": "^1.0.2",
"tinybench": "^2.9.0",
"ts-jest": "^29.4.6",
"typescript": "^5.9.3",
"zod": "^4.1.5"
},
"files": [
"dist/**/*",
"README.MD",
"default.yaml",
"LICENSE"
]
}