{"id":20358552,"url":"https://github.com/selfmadesystem/jsonpp","last_synced_at":"2026-05-09T11:33:58.929Z","repository":{"id":141333817,"uuid":"419931147","full_name":"SelfMadeSystem/JSONPP","owner":"SelfMadeSystem","description":"JSON but with more features I guess","archived":false,"fork":false,"pushed_at":"2022-08-24T00:51:01.000Z","size":7,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-01-15T01:46:02.768Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/SelfMadeSystem.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2021-10-22T01:41:28.000Z","updated_at":"2021-10-22T02:11:53.000Z","dependencies_parsed_at":null,"dependency_job_id":"8f6a47d4-ac0b-44b0-801e-24d18419650b","html_url":"https://github.com/SelfMadeSystem/JSONPP","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SelfMadeSystem%2FJSONPP","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SelfMadeSystem%2FJSONPP/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SelfMadeSystem%2FJSONPP/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SelfMadeSystem%2FJSONPP/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/SelfMadeSystem","download_url":"https://codeload.github.com/SelfMadeSystem/JSONPP/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":241895426,"owners_count":20038512,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-14T23:27:33.381Z","updated_at":"2026-05-09T11:33:58.880Z","avatar_url":"https://github.com/SelfMadeSystem.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# JSON++\nAh yes, JSON++. Very nice.\n\nBasically JSON but with some extra features. Backwards compatible with JSON (except scientific notation; I'm lazy).\n\nThe following features are supported:\n- Objects\n- Arrays\n- Strings\n- Numbers (integers and floats in decimal, hexadecimal, octal, binary, but no scientific notation because I'm lazy)\n- Booleans\n- Null\n- Comments (//, /* */)\n- References (${key1.key2.key3[...]})\n\nBasic example:\n```\n// This is a comment.\n\n// You don't have to use specify the root object as an object.\n// The parser will infer it if you start with key-value pairs. Otherwise, it will be an array.\n\nkey1 'Strings must be quoted.'\nkey2 \"You can also use double quotes.\"\n/* You don't need quotes for keys unless you want to use special characters.\n *\n * You don't need commas or colons. The parser will infer them.\n */\nkey3 null\nbooleans [ // Brackets are still required.\n    true\n    false\n]\nnumbers [\n    1       // Integer\n    -5      // Negative numbers are supported.\n    0xFF    // 255  Hexadecimal\n    0b1010  // 10   Binary\n    0o777   // 511  Octal\n    0.5     // 0.5  Floating point\n    0xf.8   // 15.5 Hexadecimal with floating point\n    0b.1    // 0.5  Binary with floating point\n    0o.2    // 0.25 Octal with floating point\n]\nobjects [\n    {\n        key1: 'value1'\n        key2: 'value2'\n        key3: null\n        key4: true\n        key5: false\n        key6: [\n            1\n            2\n            3\n        ]\n    }\n]\nreferences [\n    ${key1}       // Returns 'Strings must be quoted.'\n    ${key2}       // Returns 'You can also use double quotes.'\n    ${numbers.0}  // Returns 1\n    ${numbers.4}  // Returns 10\n    ${references} // Actually returns the  references  array. (This is a recursive reference.)\n]\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fselfmadesystem%2Fjsonpp","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fselfmadesystem%2Fjsonpp","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fselfmadesystem%2Fjsonpp/lists"}