text-svg
Version:
Convert text to SVG for node.js
50 lines (49 loc) • 1.13 kB
JSON
{
"name": "text-svg",
"version": "3.0.3",
"description": "Convert text to SVG for node.js",
"main": "dist/index.mjs",
"types": "dist/index.d.mts",
"scripts": {
"build": "tsdown ./index.ts --format esm --dts",
"dev": "tsdown ./index.ts --format esm --watch",
"prepublishOnly": "npm run build",
"test": "npm run build && vitest run",
"lint": "biome lint",
"typecheck": "tsc --noEmit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gumlet/text-svg.git"
},
"keywords": [
"text",
"svg",
"typescript"
],
"type": "module",
"author": "Aditya Patadia",
"license": "MIT",
"bugs": {
"url": "https://github.com/gumlet/text-svg/issues"
},
"homepage": "https://github.com/gumlet/text-svg#readme",
"files": [
"README.md",
"dist",
"package.json",
"LICENSE"
],
"dependencies": {
"canvas": "^3.1.0"
},
"devDependencies": {
"@biomejs/biome": "^2.3.0",
"@types/node": "^24.5.0",
"glob": "^13.0.0",
"looks-same": "^9.0.0",
"vitest": "^4.1.0",
"tsdown": "^0.22.12",
"typescript": "^7.0.0"
}
}