-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 811 Bytes
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 811 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
{
"name": "turborepo-tools",
"homepage": "https://github.com/mehulkar/turborepo-tools",
"version": "0.13.0",
"type": "module",
"scripts": {
"lint": "biome check src/** bin/**",
"lint:fix": "biome check --apply src/** bin/**",
"postpublish": "git push --follow-tags"
},
"bin": {
"trace-imports": "bin/trace-imports.mjs",
"move-root-deps": "bin/root-deps.mjs",
"get-deps": "bin/get-deps.mjs",
"fix-self-imports": "bin/self-import.mjs",
"footprint": "bin/footprint.mjs",
"has-script": "bin/has-script.mjs",
"rm-unused-deps": "bin/rm-unused-deps.mjs"
},
"dependencies": {
"@turbo/repository": "0.0.1-canary.9",
"glob": "^10.3.1",
"typescript": "4.9.5"
},
"devDependencies": {
"@biomejs/biome": "1.7.3"
},
"packageManager": "pnpm@8.14.0",
"engines": {
"node": ">=20"
}
}