emigrate/packages/plugin-tools/package.json
Joakim Carlstein 3b2b21f729
chore(release): version packages (#28)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2023-12-08 11:14:45 +01:00

51 lines
1.3 KiB
JSON

{
"name": "@emigrate/plugin-tools",
"version": "0.4.1",
"publishConfig": {
"access": "public"
},
"description": "",
"main": "dist/index.js",
"types": "dist/index.d.js",
"type": "module",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./types": {
"import": "./dist/types.js",
"types": "./dist/types.d.ts"
}
},
"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": [
"emigrate",
"plugin",
"migrations",
"types"
],
"author": "Aboviq AB <dev@aboviq.com> (https://www.aboviq.com)",
"homepage": "https://github.com/aboviq/emigrate/tree/main/packages/plugin-tools#readme",
"repository": "https://github.com/aboviq/emigrate/tree/main/packages/plugin-tools",
"bugs": "https://github.com/aboviq/emigrate/issues",
"license": "MIT",
"devDependencies": {
"@emigrate/tsconfig": "workspace:*"
},
"dependencies": {
"import-from-esm": "1.2.1"
},
"volta": {
"extends": "../../package.json"
}
}