forked from 1a35e1/sonar-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.17 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.17 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
{
"name": "@1a35e1/sonar-cli",
"version": "0.1.2",
"description": "X/Twitter social graph CLI for signal filtering and curation",
"type": "module",
"bin": {
"sonar": "dist/cli.js"
},
"files": [
"dist",
"README.md"
],
"engines": {
"node": ">=20"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"version:patch": "pnpm version patch --no-git-tag-version",
"version:minor": "pnpm version minor --no-git-tag-version",
"types": "graphql-codegen --config codegen.ts",
"sonar": "tsx src/cli.ts",
"build": "tsc",
"typecheck": "tsc --noEmit",
"prepublishOnly": "tsc"
},
"dependencies": {
"better-sqlite3": "^11",
"date-fns": "4.1.0",
"graphql": "^16.12.0",
"graphql-request": "^7.4.0",
"ink": "^6",
"ink-table": "^3.1.0",
"pastel": "^3.0.0",
"react": "^19",
"zod": "^3.25.76"
},
"devDependencies": {
"@graphql-codegen/cli": "^5.0.5",
"@graphql-codegen/typescript-graphql-request": "^6.4.0",
"@types/better-sqlite3": "^7",
"@types/node": "^22",
"@types/react": "^19",
"biome": "^0.3.3",
"ink-link": "^5.0.0",
"tsx": "^4",
"typescript": "^5"
}
}