This repository was archived by the owner on Aug 21, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.5 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.5 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
{
"name": "@hypermode/hyp-cli",
"description": "The Hypermode CLI",
"version": "",
"author": "Hypermode Inc.",
"license": "Apache-2.0",
"homepage": "https://hypermode.com",
"bin": {
"hyp": "./bin/run.js"
},
"repository": "github:hypermodeinc/hyp-cli",
"bugs": "https://github.com/hypermodeinc/hyp-cli/issues",
"dependencies": {
"@inquirer/core": "10.1.13",
"@inquirer/prompts": "7.5.3",
"@oclif/core": "4.3.3",
"@scarf/scarf": "1.4.0",
"@sindresorhus/slugify": "2.2.1",
"chalk": "5.4.1",
"gradient-string": "3.0.0",
"open": "10.1.2"
},
"devDependencies": {
"@oclif/test": "4.1.13",
"@types/node": "22.17.2",
"oclif": "4.22.12",
"prettier": "3.6.2",
"ts-node": "10.9.2",
"typescript": "5.9.2"
},
"files": ["/bin", "/dist", "/oclif.manifest.json"],
"keywords": ["Hypermode", "CLI"],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"oclif": {
"bin": "hyp",
"dirname": "hyp",
"helpClass": "./dist/custom/help",
"commands": "./dist/commands",
"plugins": [],
"topicSeparator": " ",
"topics": {
"org": {
"description": "Manage your Hypermode organization"
}
}
},
"scripts": {
"lint": "trunk check",
"pack": "npm pack",
"build": "rm -rf dist && tsc -b",
"watch": "rm -rf dist && tsc -b -w",
"postpack": "rm -f oclif.manifest.json",
"prepack": "npm i && npm run build && oclif manifest"
},
"scarfSettings": {
"allowTopLevel": true
}
}