-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
66 lines (66 loc) · 1.78 KB
/
package.json
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
{
"name": "boox-workspace",
"description": "Search anything, instantly",
"version": "0.0.0-development",
"private": true,
"author": "Beni Arisandi (https://stilearning.com)",
"repository": "https://github.com/bent10/boox",
"homepage": "https://stilearning.com/boox",
"bugs": "https://github.com/bent10/boox/issues",
"license": "MIT",
"keywords": [
"distance",
"document-engine",
"fulltext-search",
"full-text-search",
"fuzzy",
"fuzzy-matching",
"fuzzy-search",
"idf",
"instantsearch",
"inverse-document-frequency",
"inverted-index",
"nlp",
"search",
"search-engine",
"term-frequency",
"tf",
"tfidf",
"tf-idf",
"vector-space-model",
"vsm"
],
"workspaces": [
"examples/*",
"packages/*"
],
"type": "module",
"scripts": {
"start": "npm start --w boox-site",
"preview": "npm run preview --w boox-site",
"prebuild:doc": "npm run train -w boox-site",
"build:doc": "npm run build -w boox-site",
"build:examples": "npm run build -w examples-vanilla -w examples-react -w examples-vue -w examples-svelte -w examples-nextjs",
"build": "npm run build -w boox -w boox-cli",
"types": "npm run types -w boox -w boox-cli",
"lint": "npm run lint -w boox -w boox-cli",
"test": "npm test -w boox -w boox-cli",
"coverage": "npm run coverage -w boox -w boox-cli",
"format": "npm run format --workspaces --if-present"
},
"devDependencies": {
"batch-me-up": "^1.0.1",
"doogu": "^4.1.2",
"vite-plugin-cachedir": "^1.2.0",
"vite-plugin-resolve-umd-format": "^1.0.0"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"prettier": "doogu/prettier.config.js",
"release": {
"extends": "doogu/release.config.js"
}
}