File size: 803 Bytes
bc20498
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{
  "name": "@lezer/lr",
  "version": "1.4.1",
  "description": "Incremental parser",
  "main": "dist/index.cjs",
  "type": "module",
  "exports": {
    "import": "./dist/index.js",
    "require": "./dist/index.cjs"
  },
  "module": "dist/index.js",
  "types": "dist/index.d.ts",
  "author": "Marijn Haverbeke <[email protected]>",
  "license": "MIT",
  "repository": {
    "type" : "git",
    "url" : "https://github.com/lezer-parser/lr.git"
  },
  "devDependencies": {
    "@marijn/buildtool": "^0.1.5",
    "@types/node": "^20.6.2"
  },
  "dependencies": {
    "@lezer/common": "^1.0.0"
  },
  "files": ["dist"],
  "scripts": {
    "test": "echo 'Tests are in @lezer/generator'",
    "watch": "node build.js --watch",
    "prepare": "node build.js; tsc src/constants.ts -d --outDir dist"
  }
}