-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.54 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.54 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
{
"name": "@sciactive/tokenizer",
"version": "3.4.0",
"description": "Tokenize string input into 32-bit integers (for full text search and natural language processing).",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"keywords": [
"tokenize",
"tokenizer",
"token",
"full text search",
"fts",
"natural lanuage processing",
"nlp"
],
"scripts": {
"format": "prettier --write --ignore-path .prettierignore --ignore-unknown .",
"lint": "prettier --check --ignore-path .prettierignore --ignore-unknown .",
"prepare": "husky && npm run lint && ./make-snowball.sh && npm run clean && npm run build",
"clean": "test -d dist && rm -r dist || true",
"build": "tsc",
"watch": "tsc -w",
"test": "jest",
"test:watch": "jest --watch"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sciactive/tokenizer.git"
},
"author": "Hunter Perrin <hperrin@gmail.com>",
"bugs": {
"url": "https://github.com/sciactive/tokenizer/issues"
},
"license": "Apache-2.0",
"devDependencies": {
"@commitlint/cli": "^20.1.0",
"@commitlint/config-conventional": "^20.0.0",
"@tsconfig/recommended": "^1.0.11",
"@types/jest": "^30.0.0",
"husky": "^9.1.7",
"jest": "^30.2.0",
"lint-staged": "^16.2.6",
"prettier": "^3.6.2",
"ts-jest": "^29.4.5",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
},
"dependencies": {
"@sciactive/splitn": "^3.1.0",
"crc-32": "^1.2.2"
}
}