-
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.04 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.04 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": "proj-cli",
"version": "1.0.0-beta",
"description": "CLI tool for managing folder descriptions in macOS using extended attributes",
"main": "dist/index.js",
"bin": {
"proj": "dist/index.js",
"projects": "dist/index.js"
},
"scripts": {
"build": "tsc && node scripts/postbuild.js",
"dev": "ts-node src/index.ts",
"watch": "tsc --watch",
"prepare": "husky",
"check": "biome check .",
"format": "biome format --write .",
"typecheck": "tsc --noEmit"
},
"lint-staged": {
"*.{ts,js,json}": "biome check --write --no-errors-on-unmatched"
},
"dependencies": {
"chalk": "^4.1.2",
"commander": "^12.1.0"
},
"devDependencies": {
"@biomejs/biome": "^2.4.14",
"@commitlint/cli": "^20.5.3",
"@commitlint/config-conventional": "^20.5.3",
"@types/node": "^20.14.0",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"ts-node": "^10.9.2",
"typescript": "^5.5.0"
},
"engines": {
"node": ">=18.0.0"
},
"os": [
"darwin"
],
"keywords": [
"cli",
"macos",
"xattr",
"projects",
"finder"
],
"license": "MIT"
}