-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.06 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 2.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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "@zoominfo/gtm-ai-cli",
"version": "1.0.1",
"description": "A command-line tool for searching ZoomInfo's go-to-market data",
"repository": "https://github.com/Zoominfo/gtm-ai-cli",
"author": {
"name": "ZoomInfo",
"email": "developers@zoominfo.com"
},
"homepage": "https://github.com/Zoominfo/gtm-ai-cli",
"license": "MIT",
"type": "module",
"bin": {
"gtm": "dist/index.js"
},
"files": [
"dist/index.js",
"README.md"
],
"scripts": {
"build": "bun build ./src/index.ts --target node --format esm --minify --outdir dist",
"build:all": "bun build ./src/index.ts --compile --minify --target=bun-darwin-arm64 --outfile dist/gtm-macos-arm64 && bun build ./src/index.ts --compile --minify --target=bun-darwin-x64 --outfile dist/gtm-macos-x64 && bun build ./src/index.ts --compile --minify --target=bun-linux-x64 --outfile dist/gtm-linux-x64 && bun build ./src/index.ts --compile --minify --target=bun-windows-x64 --outfile dist/gtm-windows-x64.exe",
"prepublishOnly": "npm run build",
"start:dev": "bun run src/index.ts",
"test": "vitest run -c vitest.config.ts",
"test:watch": "vitest -c vitest.config.ts",
"test:live": "vitest run -c vitest.config.live.ts",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"commander": "^14.0.3",
"js-yaml": "^4.1.1"
},
"devDependencies": {
"@semantic-release/git": "10.0.1",
"@types/js-yaml": "^4.0.9",
"@types/node": "^25.7.0",
"bun": "^1.3.14",
"tsx": "^4.20.0",
"typescript": "^6.0.3",
"vitest": "^4.1.8"
},
"publishConfig": {
"access": "public"
},
"release": {
"branches": [
"main"
],
"plugins": [
[
"@semantic-release/commit-analyzer",
{
"releaseRules": [
{
"type": "docs",
"scope": "README",
"release": "patch"
}
]
}
],
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
"@semantic-release/git"
]
}
}