jjpwrgem 0.5.1 → 0.5.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,47 +1,46 @@
1
1
  {
2
- "artifactDownloadUrl": "https://github.com/20jasper/jjpwrgem/releases/download/jjpwrgem-v0.5.1",
2
+ "name": "jjpwrgem",
3
+ "version": "0.5.2",
4
+ "description": "jjpwrgem json parser with really good error messages",
5
+ "keywords": [
6
+ "command-line-utilities",
7
+ "text-processing",
8
+ "encoding",
9
+ "parser",
10
+ "formatter",
11
+ "json",
12
+ "linter"
13
+ ],
14
+ "homepage": "https://github.com/20jasper/jjpwrgem",
15
+ "license": "MIT",
3
16
  "author": "Jacob Asper <jacobasper191@gmail.com>",
17
+ "main": "",
4
18
  "bin": {
5
19
  "jjp": "run-jjp.js"
6
20
  },
21
+ "repository": "https://github.com/20jasper/jjpwrgem",
22
+ "scripts": {
23
+ "postinstall": "node ./install.js"
24
+ },
7
25
  "dependencies": {
8
26
  "axios": "^1.12.2",
9
- "axios-proxy-builder": "^0.1.2",
10
- "console.table": "^0.10.0",
27
+ "rimraf": "^6.0.1",
11
28
  "detect-libc": "^2.1.2",
12
- "rimraf": "^6.0.1"
13
- },
14
- "description": "jjpwrgem json parser with really good error messages",
15
- "devDependencies": {
16
- "prettier": "^3.6.2"
29
+ "axios-proxy-builder": "^0.1.2"
17
30
  },
31
+ "devDependencies": {},
18
32
  "engines": {
19
33
  "node": ">=14",
20
34
  "npm": ">=6"
21
35
  },
36
+ "private": false,
37
+ "type": "",
22
38
  "glibcMinimum": {
23
39
  "major": 2,
24
40
  "series": 35
25
41
  },
26
- "homepage": "https://github.com/20jasper/jjpwrgem",
27
- "keywords": [
28
- "command-line-utilities",
29
- "text-processing",
30
- "encoding",
31
- "parser",
32
- "formatter",
33
- "json",
34
- "linter"
35
- ],
36
- "license": "MIT",
37
- "name": "jjpwrgem",
38
42
  "preferUnplugged": true,
39
- "repository": "https://github.com/20jasper/jjpwrgem",
40
- "scripts": {
41
- "fmt": "prettier --write **/*.js",
42
- "fmt:check": "prettier --check **/*.js",
43
- "postinstall": "node ./install.js"
44
- },
43
+ "artifactDownloadUrl": "https://github.com/20jasper/jjpwrgem/releases/download/jjpwrgem-v0.5.2",
45
44
  "supportedPlatforms": {
46
45
  "aarch64-apple-darwin": {
47
46
  "artifactName": "jjpwrgem-aarch64-apple-darwin.tar.xz",
@@ -50,13 +49,6 @@
50
49
  },
51
50
  "zipExt": ".tar.xz"
52
51
  },
53
- "aarch64-pc-windows-msvc": {
54
- "artifactName": "jjpwrgem-x86_64-pc-windows-msvc.zip",
55
- "bins": {
56
- "jjp": "jjp.exe"
57
- },
58
- "zipExt": ".zip"
59
- },
60
52
  "aarch64-unknown-linux-gnu": {
61
53
  "artifactName": "jjpwrgem-aarch64-unknown-linux-gnu.tar.xz",
62
54
  "bins": {
@@ -71,6 +63,13 @@
71
63
  },
72
64
  "zipExt": ".tar.xz"
73
65
  },
66
+ "x86_64-unknown-linux-gnu": {
67
+ "artifactName": "jjpwrgem-x86_64-unknown-linux-gnu.tar.xz",
68
+ "bins": {
69
+ "jjp": "jjp"
70
+ },
71
+ "zipExt": ".tar.xz"
72
+ },
74
73
  "x86_64-pc-windows-gnu": {
75
74
  "artifactName": "jjpwrgem-x86_64-pc-windows-msvc.zip",
76
75
  "bins": {
@@ -78,24 +77,19 @@
78
77
  },
79
78
  "zipExt": ".zip"
80
79
  },
81
- "x86_64-pc-windows-msvc": {
80
+ "aarch64-pc-windows-msvc": {
82
81
  "artifactName": "jjpwrgem-x86_64-pc-windows-msvc.zip",
83
82
  "bins": {
84
83
  "jjp": "jjp.exe"
85
84
  },
86
85
  "zipExt": ".zip"
87
86
  },
88
- "x86_64-unknown-linux-gnu": {
89
- "artifactName": "jjpwrgem-x86_64-unknown-linux-gnu.tar.xz",
87
+ "x86_64-pc-windows-msvc": {
88
+ "artifactName": "jjpwrgem-x86_64-pc-windows-msvc.zip",
90
89
  "bins": {
91
- "jjp": "jjp"
90
+ "jjp": "jjp.exe"
92
91
  },
93
- "zipExt": ".tar.xz"
92
+ "zipExt": ".zip"
94
93
  }
95
- },
96
- "version": "0.5.1",
97
- "volta": {
98
- "node": "18.14.1",
99
- "npm": "9.5.0"
100
94
  }
101
95
  }
package/run-jjp.js CHANGED
@@ -1,4 +1,4 @@
1
1
  #!/usr/bin/env node
2
2
 
3
3
  const { run } = require("./binary");
4
- run("jjp");
4
+ run("jjp");
package/.gitignore DELETED
@@ -1,2 +0,0 @@
1
- /node_modules
2
-
package/CHANGELOG.md DELETED
@@ -1,118 +0,0 @@
1
- # Changelog
2
-
3
- All notable changes to this project will be documented in this file.
4
-
5
- The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
- and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
-
8
- ## [Unreleased]
9
-
10
- ## [0.5.1](https://github.com/20jasper/JJPWRGEM/releases/tag/jjpwrgem-v0.5.1) - 2025-12-14
11
-
12
- ### Added
13
-
14
- - end of line option
15
-
16
- ## [0.5.0](https://github.com/20jasper/JJPWRGEM/releases/tag/jjpwrgem-v0.5.0) - 2025-12-13
17
-
18
- ### Added
19
-
20
- - preferred width
21
-
22
- ### Documentation
23
-
24
- - *perf*: npm installation overhead
25
- - *perf*: add benchmarks docs and include throughput and speed benchmarks
26
-
27
- ### Performance
28
- - benchmarks for uglification and prettifying with various CLI tools
29
-
30
- ## [0.4.0](https://github.com/20jasper/JJPWRGEM/releases/tag/jjpwrgem-v0.4.0) - 2025-12-10
31
-
32
- ### Changed
33
-
34
- - default prettified indentation is now two spaces
35
- - non-empty arrays write each item on its own line
36
- - keep empty objects on a single line
37
-
38
- ### Tests
39
-
40
- - add coverage for hard-to-format inputs
41
- - add regression test for deeply nested JSON
42
-
43
- ## [0.3.3](https://github.com/20jasper/JJPWRGEM/releases/tag/jjpwrgem-v0.3.3) - 2025-12-09
44
-
45
- ### Fixed
46
-
47
- - show error message when no input comes to stdin
48
-
49
- ### Performance
50
-
51
- - only cache successful tokens in TokenStream
52
- - track count of digits instead of vec of chars
53
-
54
- ## [0.3.2](https://github.com/20jasper/JJPWRGEM/releases/tag/jjpwrgem-v0.3.2) - 2025-12-08
55
-
56
- ### Performance
57
-
58
- - write delimiters and indentation directly to buffer, avoiding intermediate allocations
59
-
60
- ## [0.3.1](https://github.com/20jasper/JJPWRGEM/releases/tag/jjpwrgem-v0.3.1) - 2025-12-08
61
-
62
- ### Performance
63
-
64
- - avoid using fmt machinery in hot paths, instead pushing directly
65
-
66
- ## [0.3.0](https://github.com/20jasper/JJPWRGEM/releases/tag/jjpwrgem-v0.3.0) - 2025-12-08
67
-
68
- ### Added
69
-
70
- - axolotl logo in version screen
71
- - consistent key ordering
72
-
73
- ### Deprecated
74
-
75
- - removed help subcommand
76
-
77
- ### Documentation
78
-
79
- - autogenerate examples and add examples to subcommands
80
- - update readme with correct command
81
- - add xtask to generate readmes
82
-
83
- ### Performance
84
-
85
- - TokenStream iterator instead of collecting into intermediary Vec
86
-
87
-
88
- ## [0.2.2](https://github.com/20jasper/JJPWRGEM/releases/tag/jjpwrgem-v0.2.2) - 2025-12-07
89
-
90
- ### Documentation
91
-
92
- - add mise installer steps
93
- - update readme with new command format and installation instructions. removes extra notes
94
-
95
- ### Performance
96
-
97
- - join_into utility to declaritively avoid allocating delimiter strings
98
- - write to single buffer instead of allocating buffer per JSON value
99
- - don't use anstream for content without ansi
100
-
101
- ## [0.2.0](https://github.com/20jasper/JJPWRGEM/releases/tag/jjpwrgem-v0.2.0) - 2025-12-06
102
-
103
- ### Added
104
-
105
- - subcommands - check and format with uglify flag
106
-
107
-
108
- ## [0.1.5](https://github.com/20jasper/JJPWRGEM/releases/tag/jjpwrgem-v0.1.5) - 2025-12-05
109
-
110
- Test for publishing flow
111
-
112
-
113
- ## [0.1.4](https://github.com/20jasper/JJPWRGEM/releases/tag/jjpwrgem-v0.1.4) - 2025-12-05
114
-
115
- ### Feature
116
- - pretty format JSON
117
- - error messages on failure
118
-
File without changes