-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 1.95 KB
/
Copy pathpackage.json
File metadata and controls
92 lines (92 loc) · 1.95 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
{
"name": "linkup-search-cli",
"version": "1.0.0",
"description": "Official CLI for Linkup — AI-powered web search from your terminal",
"type": "module",
"license": "MIT",
"author": "Linkup",
"repository": {
"type": "git",
"url": "git+https://github.com/LinkupPlatform/linkup-cli"
},
"keywords": [
"linkup",
"cli",
"search",
"ai",
"web-search"
],
"engines": {
"node": ">=22.0.0"
},
"bin": {
"linkup": "./bin/linkup.js"
},
"files": [
"dist/**/*",
"bin/**/*"
],
"publishConfig": {
"access": "public"
},
"main": "dist/src/cli.js",
"scripts": {
"prepare": "husky",
"prepublishOnly": "npm run build",
"build": "tsc",
"commitlint": "commitlint --edit",
"lint": "biome check",
"lint:fix": "biome check --write",
"prune": "knip",
"semantic-release": "semantic-release",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"@inquirer/prompts": "^8.5.2",
"commander": "^13.1.0",
"linkup-sdk": "^3.2.3",
"open": "^11.0.0"
},
"devDependencies": {
"@biomejs/biome": "2.4.4",
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@types/node": "^24.0.4",
"@vitest/coverage-v8": "^4.1.8",
"husky": "^9.1.7",
"knip": "^5.61.2",
"semantic-release": "^25.0.3",
"typescript": "^5.9.3",
"vitest": "^4.1.8"
},
"knip": {
"entry": [
"src/cli.ts"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"release": {
"branches": [
"main"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
[
"@semantic-release/github",
{
"failTitle": "The automated release is failing 🚨",
"failComment": false,
"labels": false,
"releasedLabels": false
}
]
]
}
}