prismalux
Version:
✨ A lightweight Prisma Schema Highlighter for CLI & Node.js. Works with CommonJS and ES Modules.
64 lines • 1.52 kB
JSON
{
"name": "prismalux",
"version": "0.1.3",
"description": "✨ A lightweight Prisma Schema Highlighter for CLI & Node.js. Works with CommonJS and ES Modules.",
"type": "module",
"private": false,
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"clean": "rm -rf output"
},
"exports": {
"import": "./output/esm/index.js",
"require": "./output/cjs/index.cjs"
},
"main": "./output/cjs/index.cjs",
"module": "./output/esm/index.js",
"types": "./output/esm/index.d.ts",
"bin": {
"prismalux": "./output/bin.js"
},
"author": {
"name": "Artyom Gorlovetskiy",
"email": "unbywyd@gmail.com",
"url": "https://github.com/unbywyd"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/unbywyd/prismalux.git"
},
"bugs": {
"url": "https://github.com/unbywyd/prismalux/issues"
},
"homepage": "https://github.com/unbywyd/prismalux#readme",
"keywords": [
"prisma",
"prisma-highlight",
"prisma-schema",
"prisma-schema-highlighter",
"prisma-highlighter",
"syntax-highlighting",
"prisma-cli",
"prisma-tools",
"developer-tools",
"cli",
"typescript",
"nodejs",
"terminal"
],
"devDependencies": {
"@types/node": "^22.10.10",
"tsup": "^8.4.0",
"typescript": "^5.7.2"
},
"files": [
"output/",
"README.md",
"LICENSE.md"
]
}