-
-
Notifications
You must be signed in to change notification settings - Fork 96
/
Copy pathpackage.json
81 lines (81 loc) · 2.1 KB
/
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
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
81
{
"name": "taze",
"type": "module",
"version": "19.0.2",
"packageManager": "[email protected]",
"description": "A modern cli tool that keeps your deps fresh",
"license": "MIT",
"funding": "https://github.com/sponsors/antfu",
"homepage": "https://github.com/antfu/taze#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/antfu/taze.git"
},
"bugs": {
"url": "https://github.com/antfu/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 && pnpm publish --no-git-checks",
"test": "unbuild && vitest"
},
"dependencies": {
"@antfu/ni": "^24.1.0",
"cac": "^6.7.14",
"find-up-simple": "^1.0.1",
"ofetch": "^1.4.1",
"package-manager-detector": "^1.0.0",
"pathe": "^2.0.3",
"pnpm-workspace-yaml": "^0.1.2",
"restore-cursor": "^5.1.0",
"tinyexec": "^0.3.2",
"tinyglobby": "^0.2.12",
"unconfig": "^7.3.1",
"yaml": "^2.7.0"
},
"devDependencies": {
"@antfu/eslint-config": "^4.8.1",
"@antfu/utils": "^9.1.0",
"@npmcli/config": "10.0.1",
"@posva/prompts": "^2.4.4",
"@types/cli-progress": "^3.11.6",
"@types/debug": "^4.1.12",
"@types/node": "^22.13.10",
"@types/npm-package-arg": "^6.1.4",
"@types/npm-registry-fetch": "^8.0.7",
"@types/semver": "^7.5.8",
"ansis": "^3.17.0",
"bumpp": "^10.0.3",
"cli-progress": "^3.12.0",
"debug": "^4.4.0",
"deepmerge": "^4.3.1",
"detect-indent": "^7.0.1",
"eslint": "^9.22.0",
"fast-glob": "^3.3.3",
"fast-npm-meta": "^0.3.1",
"npm-package-arg": "^12.0.2",
"npm-registry-fetch": "^18.0.2",
"p-limit": "^6.2.0",
"semver": "^7.7.1",
"taze": "workspace:*",
"tsx": "^4.19.3",
"typescript": "^5.8.2",
"ufo": "^1.5.4",
"unbuild": "^3.5.0",
"vitest": "^3.0.8"
}
}