-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 740 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 740 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
{
"name": "segment-cli",
"module": "src/index.ts",
"type": "module",
"private": true,
"bin": {
"segment": "./src/index.ts"
},
"scripts": {
"start": "bun src/index.ts",
"segment": "bun src/index.ts",
"lint": "bunx biome check src/",
"lint:fix": "bunx biome check --write src/",
"prepare": "husky",
"postinstall": "bun link"
},
"lint-staged": {
"*.ts": [
"bunx biome check --write --no-errors-on-unmatched"
]
},
"devDependencies": {
"@biomejs/biome": "^2.4.7",
"@types/bun": "latest",
"husky": "^9.1.7",
"lint-staged": "^16.3.3"
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"chalk": "^5.6.2",
"commander": "^14.0.3"
}
}