-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.74 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.74 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
{
"name": "llm-splitter",
"private": false,
"version": "0.2.0",
"description": "Efficient, configurable text chunking utility for LLM vectorization. Returns rich chunk metadata.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"files": [
"dist"
],
"scripts": {
"build": "tsc --project tsconfig.json",
"check": "npm run lint && npm run test && npm run check-format",
"check-format": "prettier --check .",
"check-lint": "eslint .",
"format": "prettier --write . && eslint --cache --fix .",
"lint": "eslint .",
"prebuild": "rm -rf dist",
"prepare": "husky",
"test": "node --loader ts-node/esm/transpile-only --test",
"test:only": "npm run test -- --test-only"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nearform/llm-splitter.git"
},
"keywords": [
"llm",
"splitter",
"chunking",
"text",
"vectorization"
],
"author": "Ryan Roemer <ryan.roemer@nearform.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/nearform/llm-splitter/issues"
},
"homepage": "https://github.com/nearform/llm-splitter#readme",
"devDependencies": {
"@commitlint/cli": "^20.0.0",
"@commitlint/config-conventional": "^20.0.0",
"@eslint/js": "^9.30.0",
"@types/node": "^25.0.2",
"eslint": "^10.0.3",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-prettier": "^5.5.1",
"globals": "^17.0.0",
"husky": "^9.1.7",
"lint-staged": "^16.1.0",
"prettier": "^3.6.2",
"tiktoken": "^1.0.21",
"ts-node": "^10.9.2",
"typescript": "^5.0.0",
"typescript-eslint": "^8.45.0"
},
"lint-staged": {
"*.{js,jsx}": "eslint --cache --fix"
},
"publishConfig": {
"access": "public"
}
}