-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.17 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.17 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
{
"name": "@kud/cli-update",
"version": "0.1.0",
"type": "module",
"description": "Tell users when a @kud CLI has an update, without blocking startup or corrupting piped output",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsup",
"build:watch": "tsup --watch",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"prepublishOnly": "npm run build",
"demo": "npm run build && node examples/demo.js"
},
"homepage": "https://kud.io/projects/cli-update",
"repository": {
"type": "git",
"url": "git+https://github.com/kud/cli-update.git"
},
"author": "kud",
"license": "MIT",
"engines": {
"node": ">=22.0.0"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@kud/ink-ui": "0.13.1",
"ink": "7.1.1",
"react": "19.2.8",
"semver": "7.8.5"
},
"devDependencies": {
"@types/node": "26.1.2",
"@types/react": "19.2.18",
"@types/semver": "7.7.1",
"tsup": "8.5.1",
"typescript": "6.0.3",
"vitest": "4.1.10"
}
}