-
Notifications
You must be signed in to change notification settings - Fork 2.3k
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.5 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.5 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
51
52
53
54
55
56
57
58
59
60
{
"name": "@turbo/workspaces",
"version": "2.8.11-canary.22",
"description": "Tools for working with package managers",
"homepage": "https://turborepo.dev",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/vercel/turborepo",
"directory": "packages/turbo-workspaces"
},
"bugs": {
"url": "https://github.com/vercel/turborepo/issues"
},
"bin": "dist/cli.js",
"module": "dist/index.mjs",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsdown",
"dev": "tsdown --watch",
"test": "jest",
"check-types": "tsc --noEmit",
"lint:prettier": "prettier -c . --cache --ignore-path=../../.prettierignore"
},
"dependencies": {
"commander": "10.0.0",
"execa": "5.1.1",
"fast-glob": "3.2.12",
"fs-extra": "10.1.0",
"gradient-string": "2.0.1",
"@inquirer/prompts": "^7.10.1",
"js-yaml": "4.1.1",
"ora": "4.1.1",
"picocolors": "1.0.1",
"semver": "7.6.2",
"update-check": "1.5.4"
},
"devDependencies": {
"@jest/globals": "30.2.0",
"@turbo/test-utils": "workspace:*",
"@turbo/tsconfig": "workspace:*",
"@turbo/utils": "workspace:*",
"@types/fs-extra": "9.0.13",
"@types/gradient-string": "1.1.2",
"@types/js-yaml": "4.0.5",
"@types/node": "18.17.4",
"@types/semver": "7.5.8",
"jest": "30.2.0",
"ts-jest": "29.4.6",
"tsdown": "0.9.3",
"typescript": "5.5.4"
},
"files": [
"dist"
],
"publishConfig": {
"access": "public"
}
}