UNPKG

prismaql-cli

Version:

CLI tool for managing and editing Prisma schema files using PrismaQL DSL.

59 lines 1.36 kB
{ "name": "prismaql-cli", "description": "CLI tool for managing and editing Prisma schema files using PrismaQL DSL.", "version": "0.1.6", "private": false, "type": "module", "publishConfig": { "access": "public" }, "scripts": { "build": "tsc", "dev": "tsc --watch", "clean": "rm -rf output" }, "main": "./output/index.js", "module": "./output/index.js", "types": "./output/index.d.ts", "bin": { "prismaql": "./output/index.js" }, "author": { "name": "Artyom Gorlovetskiy", "url": "https://github.com/unbywyd", "email": "unbywyd@gmail.com" }, "keywords": [ "prisma", "prisma-cli", "prismaql", "dsl", "schema-management", "prisma-schema" ], "license": "MIT", "dependencies": { "boxen": "^8.0.1", "chalk": "^5.4.1", "inquirer": "^12.3.2", "prismalux": "^0.1.3", "prismaql": "^0.1.9" }, "devDependencies": { "@types/node": "^22.10.10", "typescript": "^5.7.2" }, "repository": { "type": "git", "url": "git+https://github.com/unbywyd/prismaql-cli.git" }, "bugs": { "url": "https://github.com/unbywyd/prismaql-cli/issues" }, "homepage": "https://github.com/unbywyd/prismaql-cli#readme", "files": [ "output/", "README.md", "LICENSE.md" ] }