-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 2.45 KB
/
Copy pathpackage.json
File metadata and controls
100 lines (100 loc) · 2.45 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "vectorlint",
"version": "2.4.0",
"description": "An LLM-based prose linter that lets you enforce your style guide in one prompt",
"type": "module",
"main": "dist/index.js",
"scripts": {
"dev": "tsx src/index.ts",
"build": "tsup",
"typecheck": "tsc --noEmit",
"start": "node dist/index.js",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "vitest",
"test:run": "vitest run",
"test:ci": "vitest run --coverage",
"verify": "npm run typecheck && npm run lint && npm run test:run"
},
"bin": {
"vectorlint": "./dist/index.js",
"veclint": "./dist/index.js"
},
"files": [
"dist",
"presets",
"README.md",
"LICENSE.md"
],
"keywords": [
"cli",
"tty",
"command-line",
"style",
"linting",
"content",
"ai",
"compliance",
"markdown",
"content QA",
"prose linter",
"presets",
"vectorlint.ini.example",
"vectorlint"
],
"author": "TinyRocket Labs",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/TRocket-Labs/vectorlint.git"
},
"homepage": "https://vectorlint.dev",
"bugs": {
"url": "https://github.com/TRocket-Labs/vectorlint/issues"
},
"engines": {
"node": ">=20.6.0"
},
"dependencies": {
"@ai-sdk/amazon-bedrock": "^4.0.64",
"@ai-sdk/anthropic": "^3.0.47",
"@ai-sdk/azure": "^3.0.34",
"@ai-sdk/google": "^3.0.31",
"@ai-sdk/openai": "^3.0.33",
"@ai-sdk/perplexity": "^1.0.0",
"@langfuse/otel": "^5.1.0",
"@opentelemetry/api": "^1.9.1",
"@opentelemetry/sdk-node": "^0.214.0",
"@types/micromatch": "^4.0.9",
"ai": "^6.0.99",
"chalk": "^5.3.0",
"commander": "^12.0.0",
"fast-glob": "^3.3.2",
"fuzzball": "^2.2.3",
"micromatch": "^4.0.5",
"ora": "^8.2.0",
"p-limit": "^7.3.0",
"smol-toml": "^1.6.0",
"strip-ansi": "^7.1.0",
"winston": "^3.19.0",
"yaml": "^2.5.0",
"zod": "^3.25.76"
},
"devDependencies": {
"@eslint/js": "^9.37.0",
"@types/node": "^20.0.0",
"@vitest/coverage-v8": "^2.1.9",
"eslint": "^9.37.0",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import-x": "^4.16.1",
"eslint-plugin-n": "^17.23.1",
"eslint-plugin-unicorn": "^61.0.2",
"globals": "^16.4.0",
"tsup": "^8.5.0",
"tsx": "^4.0.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.46.1",
"vitest": "^2.0.0"
}
}