You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
746 B
31 lines
746 B
{ |
|
"name": "@lezer/highlight", |
|
"version": "1.2.3", |
|
"description": "Highlighting system for Lezer parse trees", |
|
"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 <marijn@haverbeke.berlin>", |
|
"license": "MIT", |
|
"devDependencies": { |
|
"@marijn/buildtool": "0.1.3", |
|
"typescript": "^5.0.0" |
|
}, |
|
"dependencies": { |
|
"@lezer/common": "^1.3.0" |
|
}, |
|
"files": ["dist"], |
|
"repository": { |
|
"type" : "git", |
|
"url" : "https://github.com/lezer-parser/highlight.git" |
|
}, |
|
"scripts": { |
|
"watch": "node build.js --watch", |
|
"prepare": "node build.js" |
|
} |
|
}
|
|
|