-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 921 Bytes
/
package.json
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
{
"name": "turbo-kit",
"version": "1.1.3",
"description": "Turborepo CLI for housekeeping",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Netail/turbo-kit.git"
},
"type": "module",
"files": ["dist"],
"engines": {
"node": "^18.18.0 || >=20.0.0",
"npm": ">=8.12.1"
},
"packageManager": "[email protected]",
"bin": {
"turbo-kit": "dist/cli.js"
},
"scripts": {
"build": "tsup --config tsup.config.json",
"dev": "tsup --config tsup.config.json --watch",
"format": "biome format --write",
"prepare": "husky || true"
},
"dependencies": {
"@turbo/repository": "0.0.1-canary.10",
"chalk": "^5.3.0",
"commander": "^12.1.0",
"npm-check-updates": "~17.1.3"
},
"devDependencies": {
"@biomejs/biome": "^1.9.2",
"@types/node": "^20.16.5",
"husky": "^9.1.6",
"tsup": "^8.3.0",
"typescript": "^5.6.2"
},
"keywords": ["turbo", "turborepo", "monorepo"]
}