-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 2.29 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 2.29 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "depfresh",
"version": "1.1.2",
"description": "Keep your npm dependencies fresh. Fast, correct, zero-config.",
"type": "module",
"license": "MIT",
"author": "Vibe Code <hello@vcode.sh> (https://vcode.sh)",
"repository": {
"type": "git",
"url": "git+https://github.com/vcode-sh/depfresh.git"
},
"bugs": {
"url": "https://github.com/vcode-sh/depfresh/issues"
},
"homepage": "https://github.com/vcode-sh/depfresh#readme",
"keywords": [
"npm",
"dependencies",
"update",
"outdated",
"monorepo",
"workspace",
"cli",
"taze",
"depfresh",
"ai",
"agent",
"machine-readable",
"json",
"automation"
],
"sideEffects": false,
"bin": {
"depfresh": "dist/cli.mjs"
},
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs"
}
},
"files": [
"dist"
],
"scripts": {
"build": "unbuild",
"dev": "tsx src/cli/index.ts",
"start": "tsx src/cli/index.ts",
"test": "vitest",
"test:run": "vitest run",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
"typecheck": "tsc --noEmit",
"test:smoke": "node test/practical-cli-smoke.mjs",
"prepublishOnly": "pnpm run build"
},
"dependencies": {
"@clack/prompts": "^1.1.0",
"ansis": "^4.2.0",
"better-sqlite3": "^12.8.0",
"citty": "^0.2.1",
"defu": "^6.1.4",
"detect-indent": "^7.0.2",
"find-up-simple": "^1.0.1",
"ini": "^6.0.0",
"jiti": "^2.6.1",
"p-limit": "^7.3.0",
"pathe": "^2.0.3",
"pnpm-workspace-yaml": "^1.6.0",
"semver": "^7.7.4",
"tinyglobby": "^0.2.15",
"undici": "^7.24.6",
"yaml": "^2.8.3"
},
"devDependencies": {
"@biomejs/biome": "^2.4.9",
"@types/better-sqlite3": "^7.6.13",
"@types/ini": "^4.1.1",
"@types/node": "^24.12.0",
"@types/semver": "^7.7.1",
"@vitest/coverage-v8": "^4.1.2",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"unbuild": "^3.6.1",
"vitest": "^4.1.2"
},
"pnpm": {
"onlyBuiltDependencies": [
"better-sqlite3",
"esbuild"
]
},
"packageManager": "pnpm@10.33.0",
"engines": {
"node": ">=24.0.0"
}
}