-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 1.71 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 1.71 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
76
77
78
79
80
81
82
83
{
"name": "@v0idd0/jsonyo",
"version": "2.0.3",
"description": "JSON swiss army knife — 18 commands, zero limits. Validate, format, query, diff, merge, flatten, convert (YAML/TOML/CSV/XML), generate TypeScript/Go/Python types, batch & watch. Free forever from vøiddo.",
"main": "src/index.js",
"bin": {
"jsonyo": "./bin/jsonyo.js"
},
"scripts": {
"test": "node test.js",
"start": "node bin/jsonyo.js"
},
"keywords": [
"json",
"json-cli",
"jsonpath",
"json-schema",
"json-diff",
"json-merge",
"json-query",
"json-validate",
"json-format",
"json-minify",
"json-flatten",
"json-unflatten",
"json-convert",
"json-to-yaml",
"json-to-toml",
"json-to-csv",
"json-to-xml",
"json-to-typescript",
"json-to-go",
"json-to-python",
"json-types",
"jq-alternative",
"yaml",
"toml",
"csv",
"xml",
"typescript",
"developer-tools",
"cli",
"free",
"voiddo"
],
"author": "vøiddo <support@voiddo.com> (https://voiddo.com)",
"license": "MIT",
"homepage": "https://tools.voiddo.com/jsonyo/?ref=jsonyo-npm",
"repository": {
"type": "git",
"url": "git+https://github.com/voidd0/jsonyo.git"
},
"bugs": {
"url": "https://github.com/voidd0/jsonyo/issues",
"email": "support@voiddo.com"
},
"engines": {
"node": ">=14.0.0"
},
"dependencies": {
"chalk": "^4.1.2",
"chokidar": "^3.5.3",
"glob": "^10.3.0"
},
"publishConfig": {
"access": "public"
},
"files": [
"bin",
"src",
"README.md",
"LICENSE"
],
"os": [
"darwin",
"linux",
"win32"
],
"funding": {
"type": "individual",
"url": "https://voiddo.com/contact/"
}
}