-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.37 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
{
"author": "Austin Raey <slowpoke@slowp.ke>",
"bin": {
"bskt": "bin/index.js"
},
"bugs": {
"url": "https://github.com/austin-raey/bskt/issues"
},
"description": "`bskt`: A CLI tool to check and update your package.json dependencies to their latest versions.",
"devDependencies": {
"@types/bun": "1.1.14",
"eslint": "9.16.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-perfectionist": "4.2.0",
"eslint-plugin-prettier": "5.2.1",
"prettier": "3.4.2",
"typescript": "5.7.2",
"typescript-eslint": "8.18.0"
},
"engines": {
"bun": ">=1"
},
"files": [
"bin"
],
"homepage": "https://github.com/austin-raey/bskt",
"keywords": [
"basket",
"bskt",
"bun",
"check",
"cli",
"dependencies",
"deps",
"discover",
"find",
"latest",
"management",
"manager",
"package.json",
"package",
"update",
"updater",
"updates",
"upgrade",
"upgrades",
"version"
],
"license": "MIT",
"name": "bskt",
"packageManager": "bun@1.1.38",
"repository": {
"type": "git",
"url": "git+https://github.com/austin-raey/bskt.git"
},
"scripts": {
"build": "bun build --target=bun --outdir=bin --minify src/index.ts",
"deps:check": "bunx bskt",
"deps:update": "bunx bskt -w",
"lint": "bunx eslint ."
},
"type": "module",
"version": "1.0.2"
}