-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1001 Bytes
/
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
{
"name": "@cerebellum/cli",
"version": "1.0.4",
"scripts": {
"build": "npm exec tsc"
},
"author": "",
"license": "ISC",
"description": "",
"type": "module",
"bin": {
"cerebellum": "./bin/run.js"
},
"oclif": {
"bin": "cerebellum",
"commands": "./dist/commands",
"dirname": "cerebellum",
"topicSeparator": " "
},
"dependencies": {
"@oclif/core": "^4",
"@oclif/plugin-help": "^6",
"@oclif/plugin-plugins": "^5",
"cli-ux": "^6.0.9",
"fs": "^0.0.1-security",
"ora": "^8.0.1",
"quill": "^2.0.2"
},
"devDependencies": {
"@oclif/prettier-config": "^0.2.1",
"@oclif/test": "^4",
"@types/chai": "^4",
"@types/mocha": "^10",
"@types/node": "^18",
"chai": "^4",
"eslint": "^8",
"eslint-config-oclif": "^5",
"eslint-config-oclif-typescript": "^3",
"eslint-config-prettier": "^9",
"mocha": "^10",
"oclif": "^4",
"shx": "^0.3.3",
"ts-node": "^10",
"typescript": "^5"
}
}