-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.1 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.1 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
{
"name": "@flyingboat/upup",
"version": "0.4.0",
"description": "CLI tool for listing outdated dependencies",
"license": "Apache-2.0",
"author": "Francois Lajoie",
"repository": {
"type": "git",
"url": "https://github.com/flyingboat-dev/upup.git"
},
"keywords": ["cli", "tool", "dependencies", "update"],
"type": "module",
"main": "dist/bundle.js",
"bin": {
"upup": "./dist/bundle.js"
},
"files": ["dist"],
"scripts": {
"dev": "node src/main.ts",
"build": "rolldown -c rolldown.config.ts",
"check": "pnpm dlx @biomejs/biome check --write",
"prepublish": "pnpm test && pnpm run check && pnpm run build",
"test": "vitest run",
"test:watch": "vitest run --watch"
},
"packageManager": "pnpm@10.29.2",
"dependencies": {
"semver": "^7.7.4"
},
"devDependencies": {
"@biomejs/biome": "^2.3.14",
"@types/node": "^25.2.3",
"@types/semver": "^7.7.1",
"rolldown": "^1.0.0-rc.4",
"typescript": "~5.9.3",
"vitest": "^4.0.18"
}
}