-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.45 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.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
{
"name": "@azure/cu-cli",
"version": "0.3.0",
"description": "CLI for Azure Content Understanding - analyze documents, discover analyzers, and manage BYOC models",
"type": "module",
"main": "dist/cu.cjs",
"bin": {
"cu": "dist/cu.cjs"
},
"scripts": {
"build": "node build.mjs",
"build:prod": "node build.mjs --production",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "eslint src tests --ext .ts",
"lint:fix": "eslint src tests --ext .ts --fix",
"format": "prettier --write \"src/**/*.ts\" \"tests/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\" \"tests/**/*.ts\"",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run build:prod"
},
"keywords": [
"azure",
"content-understanding",
"cli",
"document-analysis",
"ai"
],
"author": "",
"license": "MIT",
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@azure/msal-node": "^2.16.2",
"@azure/msal-node-extensions": "^1.3.0",
"commander": "^12.1.0",
"open": "^10.1.0"
},
"devDependencies": {
"@types/node": "^20.17.12",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"esbuild": "^0.24.2",
"eslint": "^8.57.1",
"prettier": "^3.4.2",
"typescript": "5.5",
"vitest": "^2.1.8"
},
"optionalDependencies": {
"pdf-to-png-converter": "^3.0.0",
"sharp": "^0.34.5"
}
}