@gmod-workshop/steamdown
Version:
Convert Markdown to Steam BBCode
67 lines (66 loc) • 1.35 kB
JSON
{
"name": "@gmod-workshop/steamdown",
"version": "1.1.1",
"description": "Convert Markdown to Steam BBCode",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"bin": {
"steamdown": "dist/cli.js"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"import": "./dist/index.mjs"
}
},
"files": [
"dist",
"README.md"
],
"scripts": {
"build": "tsup src/index.ts src/cli.ts",
"test": "vitest",
"coverage": "vitest run --coverage"
},
"keywords": [
"markdown",
"bbcode",
"steam",
"workshop",
"gmod"
],
"author": "dhkatz",
"license": "MIT",
"devDependencies": {
"@types/node": "^22.14.0",
"@vitest/coverage-v8": "^3.1.1",
"tsup": "^8.4.0",
"typescript": "^5.8.2",
"vitest": "^3.1.1"
},
"dependencies": {
"marked": "^15.0.7"
},
"optionalDependencies": {
"commander": "^13.1.0"
},
"tsup": {
"format": [
"esm",
"cjs"
],
"dts": true,
"clean": true,
"sourceMap": true
},
"repository": {
"type": "git",
"url": "git+https://github.com/gmod-workshop/steamdown.git"
},
"bugs": {
"url": "https://github.com/gmod-workshop/steamdown/issues"
},
"homepage": "https://github.com/gmod-workshop/steamdown#readme"
}