-
-
Notifications
You must be signed in to change notification settings - Fork 128
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.11 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.11 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "taze",
"type": "module",
"version": "19.10.0",
"packageManager": "pnpm@10.30.3",
"description": "A modern CLI tool that keeps your dependencies fresh in any repo and monorepo",
"license": "MIT",
"funding": "https://github.com/sponsors/antfu",
"homepage": "https://github.com/antfu-collective/taze#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/antfu-collective/taze.git"
},
"bugs": {
"url": "https://github.com/antfu-collective/taze/issues"
},
"main": "dist/index.mjs",
"module": "dist/index.mjs",
"types": "dist/index.d.mts",
"bin": {
"taze": "bin/taze.mjs"
},
"files": [
"dist"
],
"scripts": {
"lint": "eslint",
"dev": "DEBUG=taze:* tsx ./src/cli.ts",
"start": "tsx ./src/cli.ts",
"build": "unbuild",
"typecheck": "tsc",
"prepublishOnly": "nr build",
"release": "bumpp",
"test": "unbuild && vitest"
},
"dependencies": {
"@antfu/ni": "^28.2.0",
"@henrygd/queue": "^1.2.0",
"cac": "^7.0.0",
"find-up-simple": "^1.0.1",
"ofetch": "^1.5.1",
"package-manager-detector": "^1.6.0",
"pathe": "^2.0.3",
"pnpm-workspace-yaml": "^1.6.0",
"restore-cursor": "^5.1.0",
"tinyexec": "^1.0.2",
"tinyglobby": "^0.2.15",
"unconfig": "^7.5.0",
"yaml": "^2.8.2"
},
"devDependencies": {
"@antfu/eslint-config": "^7.6.1",
"@antfu/utils": "^9.3.0",
"@npmcli/config": "10.3.1",
"@posva/prompts": "^2.4.4",
"@types/cli-progress": "^3.11.6",
"@types/debug": "^4.1.12",
"@types/node": "^25.3.3",
"@types/npm-package-arg": "^6.1.4",
"@types/npm-registry-fetch": "^8.0.9",
"@types/semver": "^7.7.1",
"ansis": "^4.2.0",
"bumpp": "^10.4.1",
"cli-progress": "^3.12.0",
"debug": "^4.4.3",
"deepmerge": "^4.3.1",
"detect-indent": "^7.0.2",
"eslint": "^10.0.2",
"fast-npm-meta": "^1.3.0",
"npm-package-arg": "^13.0.2",
"npm-registry-fetch": "^19.1.1",
"semver": "^7.7.4",
"taze": "workspace:*",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"ufo": "^1.6.3",
"unbuild": "^3.6.1",
"vitest": "^4.0.18"
}
}