-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.41 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.41 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
49
50
51
52
53
54
55
56
57
58
{
"name": "@andreunix/sql-migrations",
"version": "0.0.1",
"description": "Sistema de migrations SQL estilo Laravel para PostgreSQL em TypeScript",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"module": "dist/index.js",
"type": "commonjs",
"bin": {
"sql-migrate": "./bin/sql-migrate",
"migrate": "./bin/sql-migrate",
"mpg": "./bin/sql-migrate"
},
"scripts": {
"build": "bun build:tsc",
"build:tsc": "tsc",
"dev": "tsc --watch",
"clean": "rm -rf dist",
"rebuild": "bun run clean && bun run build",
"test": "echo \"Error: no test specified\" && exit 1",
"prepublishOnly": "bun run build",
"link:local": "bun link",
"migrate": "node bin/sql-migrate"
},
"keywords": [
"migrations",
"sql",
"postgresql",
"database",
"laravel",
"typescript",
"postgres"
],
"author": "",
"license": "MIT",
"dependencies": {
"dotenv": "^17.2.3",
"pg": "^8.17.1"
},
"devDependencies": {
"@types/bun": "1.3.6",
"@types/node": "^25.0.9",
"@types/pg": "^8.16.0",
"typescript": "^5.9.3"
},
"peerDependencies": {
"pg": "^8.0.0"
},
"engines": {
"node": ">=18.0.0"
},
"files": [
"dist",
"bin",
"templates",
"README.md"
]
}