Diffdown is a real-time collaborative Markdown editor/previewer built on the AT Protocol
diffdown.com
1{
2 "name": "@lezer/javascript",
3 "version": "1.5.4",
4 "description": "lezer-based JavaScript grammar",
5 "main": "dist/index.cjs",
6 "type": "module",
7 "exports": {
8 "import": "./dist/index.js",
9 "require": "./dist/index.cjs"
10 },
11 "module": "dist/index.js",
12 "types": "dist/index.d.ts",
13 "author": "Marijn Haverbeke <marijn@haverbeke.berlin>",
14 "license": "MIT",
15 "devDependencies": {
16 "@lezer/generator": "^1.7.0",
17 "mocha": "^10.2.0",
18 "rollup": "^2.52.2",
19 "@rollup/plugin-node-resolve": "^9.0.0"
20 },
21 "dependencies": {
22 "@lezer/lr": "^1.3.0",
23 "@lezer/common": "^1.2.0",
24 "@lezer/highlight": "^1.1.3"
25 },
26 "repository": {
27 "type": "git",
28 "url": "https://github.com/lezer-parser/javascript.git"
29 },
30 "scripts": {
31 "build": "lezer-generator src/javascript.grammar -o src/parser && rollup -c",
32 "build-debug": "lezer-generator src/javascript.grammar --names -o src/parser && rollup -c",
33 "prepare": "npm run build",
34 "test": "mocha test/test-*.js"
35 }
36}