jjpwrgem 0.5.0 → 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.0",
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.0",
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,112 +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.0](https://github.com/20jasper/JJPWRGEM/releases/tag/jjpwrgem-v0.5.0) - 2025-12-13
11
-
12
- ### Added
13
-
14
- - preferred width
15
-
16
- ### Documentation
17
-
18
- - *perf*: npm installation overhead
19
- - *perf*: add benchmarks docs and include throughput and speed benchmarks
20
-
21
- ### Performance
22
- - benchmarks for uglification and prettifying with various CLI tools
23
-
24
- ## [0.4.0](https://github.com/20jasper/JJPWRGEM/releases/tag/jjpwrgem-v0.4.0) - 2025-12-10
25
-
26
- ### Changed
27
-
28
- - default prettified indentation is now two spaces
29
- - non-empty arrays write each item on its own line
30
- - keep empty objects on a single line
31
-
32
- ### Tests
33
-
34
- - add coverage for hard-to-format inputs
35
- - add regression test for deeply nested JSON
36
-
37
- ## [0.3.3](https://github.com/20jasper/JJPWRGEM/releases/tag/jjpwrgem-v0.3.3) - 2025-12-09
38
-
39
- ### Fixed
40
-
41
- - show error message when no input comes to stdin
42
-
43
- ### Performance
44
-
45
- - only cache successful tokens in TokenStream
46
- - track count of digits instead of vec of chars
47
-
48
- ## [0.3.2](https://github.com/20jasper/JJPWRGEM/releases/tag/jjpwrgem-v0.3.2) - 2025-12-08
49
-
50
- ### Performance
51
-
52
- - write delimiters and indentation directly to buffer, avoiding intermediate allocations
53
-
54
- ## [0.3.1](https://github.com/20jasper/JJPWRGEM/releases/tag/jjpwrgem-v0.3.1) - 2025-12-08
55
-
56
- ### Performance
57
-
58
- - avoid using fmt machinery in hot paths, instead pushing directly
59
-
60
- ## [0.3.0](https://github.com/20jasper/JJPWRGEM/releases/tag/jjpwrgem-v0.3.0) - 2025-12-08
61
-
62
- ### Added
63
-
64
- - axolotl logo in version screen
65
- - consistent key ordering
66
-
67
- ### Deprecated
68
-
69
- - removed help subcommand
70
-
71
- ### Documentation
72
-
73
- - autogenerate examples and add examples to subcommands
74
- - update readme with correct command
75
- - add xtask to generate readmes
76
-
77
- ### Performance
78
-
79
- - TokenStream iterator instead of collecting into intermediary Vec
80
-
81
-
82
- ## [0.2.2](https://github.com/20jasper/JJPWRGEM/releases/tag/jjpwrgem-v0.2.2) - 2025-12-07
83
-
84
- ### Documentation
85
-
86
- - add mise installer steps
87
- - update readme with new command format and installation instructions. removes extra notes
88
-
89
- ### Performance
90
-
91
- - join_into utility to declaritively avoid allocating delimiter strings
92
- - write to single buffer instead of allocating buffer per JSON value
93
- - don't use anstream for content without ansi
94
-
95
- ## [0.2.0](https://github.com/20jasper/JJPWRGEM/releases/tag/jjpwrgem-v0.2.0) - 2025-12-06
96
-
97
- ### Added
98
-
99
- - subcommands - check and format with uglify flag
100
-
101
-
102
- ## [0.1.5](https://github.com/20jasper/JJPWRGEM/releases/tag/jjpwrgem-v0.1.5) - 2025-12-05
103
-
104
- Test for publishing flow
105
-
106
-
107
- ## [0.1.4](https://github.com/20jasper/JJPWRGEM/releases/tag/jjpwrgem-v0.1.4) - 2025-12-05
108
-
109
- ### Feature
110
- - pretty format JSON
111
- - error messages on failure
112
-
File without changes