mirror of
https://github.com/penpot/penpot.git
synced 2025-01-09 00:10:11 -05:00
607deb31dc
Mainly leave shadow-cljs for build cljs stuff and use esbuild for bundle all js dependencies, completly avoiding all possible incompatibility issues between js libraries and google closure compiler.
19 lines
487 B
JSON
19 lines
487 B
JSON
{
|
|
"name": "@penpot/hljs",
|
|
"version": "1.0.0",
|
|
"description": "Penpot Hightlight.js ESM wrapper",
|
|
"module": "index.js",
|
|
"packageManager": "yarn@4.3.1",
|
|
"author": "Andrey Antukh",
|
|
"license": "MPL-2.0",
|
|
"type": "module",
|
|
"scripts": {
|
|
"build": "esbuild --bundle --platform=browser --format=esm --target=es2021 --outfile=dist/index.mjs index.js --minify"
|
|
},
|
|
"dependencies": {
|
|
"highlight.js": "^11.10.0"
|
|
},
|
|
"devDependencies": {
|
|
"esbuild": "^0.24.0"
|
|
}
|
|
}
|