@launchql/core
Version:
LaunchQL Package and Migration Tools
68 lines (67 loc) • 2.01 kB
JSON
{
"name": "@launchql/core",
"version": "2.8.0",
"author": "Dan Lynch <pyramation@gmail.com>",
"description": "LaunchQL Package and Migration Tools",
"main": "index.js",
"module": "esm/index.js",
"types": "index.d.ts",
"homepage": "https://github.com/launchql/launchql",
"license": "MIT",
"publishConfig": {
"access": "public",
"directory": "dist"
},
"repository": {
"type": "git",
"url": "https://github.com/launchql/launchql"
},
"bugs": {
"url": "https://github.com/launchql/launchql/issues"
},
"scripts": {
"copy": "npm run copy:pkg; npm run copy:sql",
"copy:pkg": "copyfiles -f ../../LICENSE README.md package.json dist",
"copy:sql": "copyfiles -f src/migrate/sql/* dist/migrate/sql && copyfiles -f src/migrate/sql/* dist/esm/migrate/sql && copyfiles -f src/init/sql/* dist/init/sql && copyfiles -f src/init/sql/* dist/esm/init/sql",
"clean": "rimraf dist/**",
"prepare": "npm run build",
"build": "npm run clean; tsc; tsc -p tsconfig.esm.json; npm run copy",
"build:dev": "npm run clean; tsc --declarationMap; tsc -p tsconfig.esm.json; npm run copy",
"lint": "eslint . --fix",
"test": "jest",
"test:watch": "jest --watch"
},
"keywords": [
"database",
"migration",
"postgresql",
"launchql",
"schema",
"sqitch"
],
"devDependencies": {
"@types/glob": "^8.1.0",
"@types/rimraf": "^4.0.5"
},
"dependencies": {
"@launchql/env": "^2.2.1",
"@launchql/server-utils": "^2.2.1",
"@launchql/templatizer": "^2.3.0",
"@launchql/types": "^2.3.0",
"@pgsql/types": "^17.6.1",
"case": "^1.6.3",
"chalk": "^4.1.0",
"csv-to-pg": "^2.0.10",
"glob": "^11.0.2",
"parse-package-name": "^1.0.0",
"pg-cache": "^1.1.1",
"pg-env": "^1.1.0",
"pgsql-deparser": "^17.11.1",
"pgsql-parser": "^17.8.2",
"rimraf": "^6.0.1"
},
"peerDependencies": {
"@pgsql/types": "^17.6.1"
},
"gitHead": "bbe6d40a54b5727641cc0184e01f9701796bc0b5"
}