-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.22 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
{
"name": "cli",
"version": "1.1.0",
"description": "A CLI for the aram development tools.",
"main": "index.js",
"type": "module",
"bin": {
"cli": "bin/index.js"
},
"scripts": {
"create": "node bin/create_rest_api_template.js",
"create@lts": "node bin/create_rest_api_template_lts.js",
"create@v1": "node bin/create_rest_api_template_v1.js",
"test": "vitest",
"format": "prettier . --write",
"check-format": "prettier . --check"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aramtech/cli.git"
},
"keywords": [],
"author": "",
"license": "",
"bugs": {
"url": "https://github.com/aramtech/cli/issues"
},
"homepage": "https://github.com/aramtech/cli#readme",
"devDependencies": {
"prettier": "^3.0.3",
"vitest": "^0.34.6"
},
"prettier": {
"semi": false,
"singleQuote": true,
"tabWidth": 4,
"printWidth": 160
},
"dependencies": {
"@octokit/core": "^5.0.1",
"axios": "^1.6.0",
"commander": "^11.1.0",
"enquirer": "^2.4.1",
"fs-extra": "^11.1.1",
"ora": "^7.0.1"
}
}