-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.8 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "prisma-migrations-runner",
"description": "Run Prisma migrations in code without the CLI",
"homepage": "https://github.com/mitchellston/prisma-migrations-runner",
"bugs": {
"url": "https://github.com/mitchellston/prisma-migrations-runner/issues"
},
"author": {
"name": "Mitchellston"
},
"exports": {
".": {
"import": "./index.js",
"types": "./index.d.ts"
},
"./mysql": {
"import": "./mysql/index.js",
"types": "./mysql/index.d.ts"
}
},
"module": "src/index.ts",
"type": "module",
"scripts": {
"build": "bun run builder.ts; bun run postbuild",
"postbuild": "cp ./README.md ./dist/README.md; cp ./LICENSE ./dist/LICENSE",
"publish:major": "npm version major && git commit --m 'new major version' -a && git push; cp ./package.json ./dist/package.json; cd ./dist; npm publish ./",
"publish:minor": "npm version minor && git commit --m 'new minor version' -a && git push; cp ./package.json ./dist/package.json; cd ./dist; npm publish ./",
"publish:patch": "npm version patch && git commit --m 'new patch version' -a && git push; cp ./package.json ./dist/package.json; cd ./dist; npm publish ./",
"publish:beta": "npm version patch && git commit --m 'new beta version' -a && git push; cp ./package.json ./dist/package.json; cd ./dist; npm publish ./ --tag beta",
"publish:alpha": "npm version patch && git commit --m 'new beta version' -a && git push; cp ./package.json ./dist/package.json; cd ./dist; npm publish ./ --tag alpha"
},
"devDependencies": {
"@types/node": "latest",
"@types/bun": "latest",
"bun-plugin-dts": "^0.3.0",
"typescript": "^5"
},
"peerDependencies": {
"@prisma/client": "*"
},
"license": "MIT",
"keywords": [
"prisma",
"migrations",
"cli"
],
"version": "0.0.8"
}