-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.06 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.06 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
{
"name": "@commissionsight/cli",
"version": "0.2.0",
"description": "Command-line interface for the CommissionSight API — auth, workspaces, and statement uploads for any carrier and period.",
"keywords": [
"commissionsight",
"cli",
"commission",
"insurance",
"carrier",
"statements",
"upload"
],
"license": "MIT",
"author": "CommissionSight",
"type": "module",
"bin": {
"cs": "bin/cs.mjs",
"commissionsight": "bin/cs.mjs"
},
"files": [
"dist",
"bin",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=20"
},
"exports": {
".": {
"types": "./dist/main.d.ts",
"import": "./dist/main.js"
}
},
"scripts": {
"build": "tsc -p tsconfig.build.json",
"typecheck": "tsc --noEmit",
"test": "bun test",
"prepublishOnly": "bun run build"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@commissionsight/sdk": "^2.4.0"
},
"devDependencies": {
"@types/bun": "^1.1.0",
"@types/node": "^22.0.0",
"typescript": "^5.6.0"
}
}