-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 815 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 815 Bytes
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
{
"name": "threads-cli",
"version": "0.1.0",
"description": "CLI toolkit for working with Threads from the terminal",
"type": "module",
"bin": {
"threads": "./dist/cli.js"
},
"scripts": {
"build": "tsup src/cli.ts --format esm --dts --clean",
"dev": "tsx src/cli.ts --help",
"start": "node dist/cli.js",
"typecheck": "tsc --noEmit",
"test": "node --import tsx --test $(find test -name '*.test.ts' -print)"
},
"keywords": [
"threads",
"cli",
"meta",
"terminal"
],
"license": "MIT",
"engines": {
"node": ">=20"
},
"dependencies": {
"cac": "^6.7.14",
"picocolors": "^1.1.1",
"threads-api": "^1.6.3"
},
"devDependencies": {
"@types/node": "^24.9.1",
"tsup": "^8.5.0",
"tsx": "^4.20.6",
"typescript": "^5.9.3"
}
}