-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.69 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.69 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
{
"name": "@deploycloud/cli",
"version": "0.0.1",
"description": "DeployCloud CLI — deploy and manage your cloud projects",
"type": "module",
"bin": {
"deploycloud": "./bin/run.js",
"dcloud": "./bin/run.js"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"bin",
"dist",
"oclif.manifest.json"
],
"scripts": {
"build": "tsc",
"dev": "tsx src/index.ts",
"postpack": "rm -f oclif.manifest.json",
"prepack": "tsc && oclif manifest",
"lint": "biome check .",
"format": "biome format --write .",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"prepare": "husky"
},
"oclif": {
"bin": "deploycloud",
"dirname": "deploycloud",
"commands": {
"strategy": "pattern",
"target": "./dist/commands"
},
"topicSeparator": ":",
"plugins": [
"@oclif/plugin-help",
"@oclif/plugin-version"
]
},
"engines": {
"node": ">=22",
"pnpm": ">=10"
},
"packageManager": "pnpm@10.0.0",
"devDependencies": {
"@biomejs/biome": "^2.2.0",
"@commitlint/cli": "^19.0.0",
"@commitlint/config-conventional": "^19.0.0",
"@types/ws": "^8.5.14",
"@vitest/coverage-v8": "^3.0.0",
"husky": "^9.0.0",
"lint-staged": "^15.0.0",
"oclif": "^4.0.0",
"tsx": "^4.0.0",
"typescript": "^5.8.0",
"vitest": "^3.0.0"
},
"dependencies": {
"@inquirer/prompts": "^7.0.0",
"@oclif/core": "^4.0.0",
"@oclif/plugin-help": "^6.0.0",
"@oclif/plugin-version": "^2.0.0",
"chalk": "^5.4.1",
"conf": "^13.0.0",
"ora": "^8.2.0",
"undici": "^7.0.0",
"ws": "^8.18.2"
}
}