Files
dealplustech/dealplustech-astro/node_modules/@shikijs/engine-javascript/package.json
Kunthawat Greethong 3ed9f3f3ff 🎨 Fix CSS: Import global.css + plain CSS styles
CSS was not being imported! Fixed:

 Added 'import ../styles/global.css' to BaseLayout.astro
 Rewrote CSS with plain CSS (not @apply which wasn't working)
 Cookie banner has inline styles as backup
 Font size: 16px base
 Solid colors: green-600 (#16a34a), gray-900 (#111827)
 Footer has policy links

Build: 12 pages 
2026-03-10 08:21:30 +07:00

45 lines
1.1 KiB
JSON

{
"name": "@shikijs/engine-javascript",
"type": "module",
"version": "1.29.2",
"description": "Engine for Shiki using JavaScript's native RegExp",
"author": "Anthony Fu <anthonyfu117@hotmail.com>",
"license": "MIT",
"homepage": "https://github.com/shikijs/shiki#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/shikijs/shiki.git",
"directory": "packages/engine-javascript"
},
"bugs": "https://github.com/shikijs/shiki/issues",
"keywords": [
"shiki",
"shiki-engine"
],
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"./raw": {
"types": "./dist/engine-raw.d.mts",
"default": "./dist/engine-raw.mjs"
}
},
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"files": [
"dist"
],
"dependencies": {
"@shikijs/vscode-textmate": "^10.0.1",
"oniguruma-to-es": "^2.2.0",
"@shikijs/types": "1.29.2"
},
"scripts": {
"build": "unbuild",
"dev": "unbuild --stub"
}
}