├── .gitignore ├── .npmignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── dist ├── index.d.cts └── index.d.ts ├── package.json ├── rollup.config.js ├── src ├── highlight.js └── json.grammar └── test ├── arrays.txt ├── literals.txt ├── numbers.txt ├── objects.txt ├── strings.txt └── test-json.js /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules/ 2 | /src/parser.* 3 | /dist 4 | .cache 5 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | /docs 3 | .cache 4 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lezer-parser/json/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lezer-parser/json/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lezer-parser/json/HEAD/README.md -------------------------------------------------------------------------------- /dist/index.d.cts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lezer-parser/json/HEAD/dist/index.d.cts -------------------------------------------------------------------------------- /dist/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lezer-parser/json/HEAD/dist/index.d.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lezer-parser/json/HEAD/package.json -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lezer-parser/json/HEAD/rollup.config.js -------------------------------------------------------------------------------- /src/highlight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lezer-parser/json/HEAD/src/highlight.js -------------------------------------------------------------------------------- /src/json.grammar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lezer-parser/json/HEAD/src/json.grammar -------------------------------------------------------------------------------- /test/arrays.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lezer-parser/json/HEAD/test/arrays.txt -------------------------------------------------------------------------------- /test/literals.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lezer-parser/json/HEAD/test/literals.txt -------------------------------------------------------------------------------- /test/numbers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lezer-parser/json/HEAD/test/numbers.txt -------------------------------------------------------------------------------- /test/objects.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lezer-parser/json/HEAD/test/objects.txt -------------------------------------------------------------------------------- /test/strings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lezer-parser/json/HEAD/test/strings.txt -------------------------------------------------------------------------------- /test/test-json.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lezer-parser/json/HEAD/test/test-json.js --------------------------------------------------------------------------------