-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.71 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
{
"name": "insomnie",
"version": "1.2.1",
"description": "insomnie is a rest client for the terminal (TUI) ",
"type": "module",
"main": "./insomnie.js",
"module": "./insomnie.js",
"private": false,
"engines": {
"node": ">=20",
"npm": ">=10.7"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"buildInline": "esbuild index.ts --bundle --platform=node --minify --packages=external --outfile=insomnie.js",
"build": "node build.mjs prod",
"build:dev": "node build.mjs dev",
"watch": "nodemon --exec 'npm run build:dev' -e ts,mjs,json --ignore insomnie.mjs",
"changelog": "git cliff > changelog.md",
"changelog:patch": "git cliff --bump patch -o changelog.md",
"changelog:minor": "git cliff --bump minor -o changelog.md",
"docs:dev": "vitepress dev docs --host",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs",
"release:docs": "node bin/generate_version.js && npm run docs:build && cp version.json docs/.vitepress/dist/"
},
"bin": {
"insomnie": "./insomnie.js"
},
"keywords": [
"rest",
"rest client",
"tui",
"cli",
"http",
"client"
],
"author": "Marco A. Gallegos Loaeza",
"license": "GPL-3.0-only",
"repository": {
"type": "git",
"url": "git+https://github.com/marco-gallegos/insomnie"
},
"homepage": "https://github.com/marco-gallegos/insomnie",
"dependencies": {
"blessed": "^0.1.81",
"chalk": "^5.3.0",
"cli-table3": "^0.6.5",
"commander": "^12.1.0",
"figlet": "^1.8.0",
"zustand": "^5.0.0"
},
"devDependencies": {
"@types/blessed": "^0.1.25",
"esbuild": "^0.24.0",
"nodemon": "^3.1.7",
"vitepress": "^1.4.1"
}
}