-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.69 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 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
73
74
75
{
"name": "para-cli",
"version": "1.24.5",
"license": "Apache-2.0",
"description": "Command-line tool for Para backend servers",
"homepage": "https://paraio.org",
"type": "module",
"exports": "./index.js",
"author": {
"name": "Alex Bogdanovski",
"email": "alex@erudika.com",
"url": "https://erudika.com"
},
"files": [
"para-cli.js",
"index.js"
],
"bin": {
"para-cli": "para-cli.js"
},
"keywords": [
"para",
"backend",
"cli",
"baas",
"api"
],
"devDependencies": {
"@biomejs/biome": "^2.4.16",
"eslint": "^10.4.1",
"release-it": "^20.2.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Erudika/para-cli.git"
},
"dependencies": {
"@inquirer/input": "^5.1.2",
"@inquirer/password": "^5.1.1",
"brace-expansion": "^5.0.6",
"chalk": "^5.6.2",
"conf": "^15.1.0",
"exit": "^0.1.2",
"figlet": "^1.11.0",
"get-stdin": "^10.0.0",
"globby": "^16.2.0",
"htmlparser2": "^12.0.0",
"jsonwebtoken": "^9.0.3",
"meow": "^14.1.0",
"mime-types": "^3.0.2",
"para-client-js": "^1.41.4",
"resolve": "^1.22.12",
"striptags": "^3.2.0",
"update-notifier": "^7.3.1",
"yargs-parser": "^22.0.0"
},
"scripts": {
"lint": "biome lint *.js",
"lint:fix": "biome lint --write *.js",
"format": "biome format --write *.js",
"format:check": "biome format *.js",
"check": "biome check *.js",
"check:fix": "biome check --write *.js",
"release": "release-it"
},
"release-it": {
"$schema": "https://unpkg.com/release-it/schema/release-it.json",
"github": {
"release": true
},
"npm": {
"publish": true
}
}
}