-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.8 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.8 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
{
"name": "@1a35e1/sonar-cli",
"version": "0.5.4",
"description": "X social graph CLI for signal filtering and curation",
"type": "module",
"bin": {
"sonar": "dist/cli.js"
},
"files": [
"dist",
"README.md",
"SKILL.md"
],
"engines": {
"node": ">=20"
},
"repository": {
"type": "git",
"url": "https://github.com/1a35e1/sonar-cli"
},
"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",
"drift:schema:check": "node scripts/check-schema-drift.mjs",
"drift:surface:update": "node scripts/update-command-surface-snapshot.mjs",
"drift:surface:check": "node scripts/check-command-surface-snapshot.mjs",
"drift:docs:check": "node scripts/check-doc-command-parity.mjs",
"drift:data:check": "node scripts/check-data-compat.mjs",
"drift:check": "pnpm drift:surface:check && pnpm drift:docs:check && pnpm drift:data:check && pnpm drift:schema:check",
"test": "vitest run",
"prepublishOnly": "tsc"
},
"dependencies": {
"date-fns": "4.1.0",
"graphql": "^16.12.0",
"graphql-request": "^7.4.0",
"commander": "^12",
"ink": "^6",
"ink-link": "^5.0.0",
"ink-table": "^3.1.0",
"ink-text-input": "^6.0.0",
"node-sqlite3-wasm": "^0.8.55",
"react": "^19",
"unicode-animations": "^1.0.3"
},
"devDependencies": {
"@graphql-codegen/cli": "^5.0.5",
"@graphql-codegen/typescript-graphql-request": "^6.4.0",
"@types/node": "^22",
"@types/react": "^19",
"biome": "^0.3.3",
"tsx": "^4",
"typescript": "^5",
"vitest": "^4.1.3"
}
}