-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.26 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.26 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
{
"name": "@ssv/cli",
"version": "1.2.0",
"private": false,
"description": "@ssv developer tooling CLI",
"license": "MIT",
"author": "Stephen Lautier <[email protected]>",
"repository": {
"type": "git",
"url": "git+https://github.com/sketch7/ssv.cli.git"
},
"bin": {
"ssv": "dist/cli.mjs"
},
"type": "module",
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsdown",
"dev": "tsdown -w",
"start": "node dist/cli.mjs",
"gen-schema": "tsx scripts/gen-schema.ts",
"lint": "oxlint .",
"lint:fix": "oxlint --fix .",
"fmt": "oxfmt .",
"fmt:check": "oxfmt . --check",
"typecheck": "tsc --noEmit",
"__CI__": "",
"release": "npm publish"
},
"dependencies": {
"commander": "^14.0.3",
"consola": "^3.4.2",
"execa": "^9.6.1",
"listr2": "^10.2.1",
"update-notifier": "^7.3.1",
"valibot": "^1.3.1",
"yaml": "^2.8.3"
},
"devDependencies": {
"@types/node": "^25.5.0",
"@types/update-notifier": "^6.0.8",
"@valibot/to-json-schema": "^1.6.0",
"oxfmt": "^0.42.0",
"oxlint": "^1.57.0",
"tsdown": "^0.21.5",
"tsx": "^4.21.0",
"typescript": "^6.0.2"
},
"engines": {
"node": ">=24"
},
"packageManager": "[email protected]"
}