-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
74 lines (74 loc) · 1.73 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
65
66
67
68
69
70
71
72
73
74
{
"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.0.1",
"@inquirer/prompts": "^7.0.1",
"@oclif/core": "^4",
"@scarf/scarf": "^1.4.0",
"@sindresorhus/slugify": "^2.2.1",
"chalk": "^5.3.0",
"gradient-string": "^3.0.0",
"open": "^10.1.0"
},
"devDependencies": {
"@eslint/js": "^9.14.0",
"@oclif/test": "^4",
"@types/eslint__js": "^8.42.3",
"@types/node": "^22.9.0",
"eslint": "^9.14.0",
"oclif": "^4",
"prettier": "^3.3.3",
"ts-node": "^10",
"typescript": "^5.6.3",
"typescript-eslint": "^8.13.0"
},
"files": [
"/bin",
"/dist",
"/oclif.manifest.json"
],
"keywords": [
"Hypermode",
"Modus",
"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": "eslint .",
"pretty": "prettier --write .",
"pretty:check": "prettier --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
}
}