emigrate/packages/cli/package.json

62 lines
1.6 KiB
JSON

{
"name": "@emigrate/cli",
"version": "0.17.0",
"publishConfig": {
"access": "public",
"provenance": true
},
"description": "",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"bin": {
"emigrate": "dist/cli.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc --pretty",
"build:watch": "tsc --pretty --watch",
"test": "glob -c \"node --import tsx --test-reporter spec --test\" \"./src/**/*.test.ts\"",
"test:watch": "glob -c \"node --watch --import tsx --test-reporter spec --test\" \"./src/**/*.test.ts\"",
"lint": "xo --cwd=../.. $(pwd)"
},
"keywords": [
"migrate",
"migrations",
"database",
"emigrate",
"immigration"
],
"devDependencies": {
"@emigrate/tsconfig": "workspace:*"
},
"author": "Aboviq AB <dev@aboviq.com> (https://www.aboviq.com)",
"homepage": "https://github.com/aboviq/emigrate/tree/main/packages/cli#readme",
"repository": "https://github.com/aboviq/emigrate/tree/main/packages/cli",
"bugs": "https://github.com/aboviq/emigrate/issues",
"license": "MIT",
"dependencies": {
"@emigrate/plugin-tools": "workspace:*",
"@emigrate/types": "workspace:*",
"ansis": "2.0.3",
"cosmiconfig": "9.0.0",
"elegant-spinner": "3.0.0",
"figures": "6.0.1",
"import-from-esm": "1.3.3",
"is-interactive": "2.0.0",
"log-update": "6.0.0",
"pretty-ms": "8.0.0",
"serialize-error": "11.0.3"
},
"volta": {
"extends": "../../package.json"
}
}