Files
vercel__streamdown/packages/streamdown-code/package.json
2026-08-31 17:50:20 +02:00

46 lines
1002 B
JSON

{
"name": "@streamdown/code",
"version": "1.1.1",
"description": "Shiki syntax highlighting plugin for Streamdown",
"repository": {
"type": "git",
"url": "git+https://github.com/vercel/streamdown.git",
"directory": "packages/streamdown-code"
},
"license": "Apache-2.0",
"author": "Hayden Bleasel <hayden.bleasel@vercel.com>",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"engines": {
"node": ">=20"
},
"scripts": {
"build": "tsup",
"test": "vitest run",
"test:coverage": "vitest --coverage run"
},
"dependencies": {
"shiki": "^4.4.3"
},
"devDependencies": {
"@vitest/coverage-v8": "^4.1.10",
"tsup": "^8.5.1",
"typescript": "^5.9.3",
"vitest": "^4.1.10"
},
"peerDependencies": {
"react": "^18.0.0 || ^19.0.0"
}
}