-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.03 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.03 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
{
"name": "migratta",
"version": "0.7.0",
"description": "Database migrations library",
"keywords": [
"sql",
"migration",
"database",
"sqlite"
],
"license": "ISC",
"contributors": [
{
"name": "Timur Moziev",
"email": "timur.moziev@gmail.com",
"url": "https://timurrin.github.io/"
}
],
"files": [
"dist"
],
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/cinnabar-forge/migratta.git"
},
"scripts": {
"build": "tsup",
"build:dev": "tsc",
"check": "biome check ./src ./test",
"fix": "biome check --fix --unsafe ./src ./test",
"prepack": "npm run build",
"test": "npm run check && npm run build:dev && node --test './build/dev/test/index.test.js'"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@cinnabar-forge/meta": "0.4.3",
"@types/node": "24.9.2",
"tsup": "8.5.0",
"typescript": "5.9.3"
},
"engines": {
"node": ">=20"
}
}