-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.02 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.02 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
77
78
79
80
81
82
83
84
{
"name": "@hivellm/classify",
"version": "0.7.0",
"description": "Intelligent document classification for graph databases and full-text search using modern LLMs",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"classify": "./dist/cli.js"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": [
"dist",
"templates",
"schemas",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"type-check": "tsc --noEmit",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"format": "prettier --write \"src/**/*.ts\"",
"test": "vitest --run",
"test:watch": "vitest",
"test:coverage": "vitest --coverage --run",
"prepublishOnly": "npm run build && npm test",
"publish:wsl": "export BROWSER=wslview && npm publish"
},
"keywords": [
"classification",
"llm",
"document-analysis",
"graph-database",
"fulltext-search",
"neo4j",
"nexus",
"elasticsearch",
"typescript",
"cli"
],
"author": "HiveLLM Development Team",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/hivellm/classify.git"
},
"bugs": {
"url": "https://github.com/hivellm/classify/issues"
},
"homepage": "https://github.com/hivellm/classify#readme",
"engines": {
"node": ">=18.0.0"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@fission-ai/openspec": "^0.13.0",
"@types/node": "^22.18.12",
"@typescript-eslint/eslint-plugin": "^8.20.0",
"@typescript-eslint/parser": "^8.20.0",
"@vitest/coverage-v8": "^4.0.4",
"eslint": "^9.19.0",
"prettier": "^3.4.2",
"tsup": "^8.3.5",
"typescript": "^5.7.2",
"vitest": "^4.0.4"
},
"dependencies": {
"@hivellm/compression-prompt": "^0.1.0",
"@hivellm/transmutation-lite": "^0.6.1",
"commander": "^14.0.2",
"dotenv": "^17.2.3",
"glob": "^11.0.0"
}
}