-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1019 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 1019 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
38
{
"name": "starless",
"version": "1.0.1",
"description": "A CLI tool to unstar all GitHub repositories starred by the authenticated user.",
"module": "index.ts",
"type": "module",
"bin": {
"starless": "./index.ts"
},
"scripts": {
"start": "bun run index.ts",
"build": "bun build --compile --production --bytecode index.ts --outfile dist/starless",
"format": "prettier --check .",
"format:fix": "prettier --write .",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "bun test",
"test:watch": "bun test --watch",
"typecheck": "tsc --noEmit"
},
"private": true,
"dependencies": {
"commander": "^14.0.3",
"octokit": "^5.0.5"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/bun": "latest",
"eslint": "^10.0.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-perfectionist": "^5.6.0",
"prettier": "^3.8.1",
"typescript-eslint": "^8.57.0"
},
"peerDependencies": {
"typescript": "^5.9.3"
}
}