-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.29 KB
/
package.json
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
{
"name": "@farjs/better-sqlite3-migrate",
"author": "viktor-podzigun",
"version": "0.0.0",
"license": "MIT",
"description": "Automates Sqlite DB schema versioning",
"scripts": {
"lint": "quick-lint-js ./*.mjs",
"test": "npx sql-bundle ./test/migrations && tsc && bun test && node ./test/all.mjs",
"format": "prettier **/*.mjs --write",
"formatCheck": "prettier **/*.mjs --check"
},
"type": "module",
"bin": {
"sql-bundle": "sql-bundle.mjs"
},
"main": "./index.mjs",
"exports": "./index.mjs",
"types": "./index.d.mts",
"private": false,
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/farjs/better-sqlite3-migrate.git"
},
"homepage": "https://github.com/farjs/better-sqlite3-migrate",
"bugs": {
"url": "http://github.com/farjs/better-sqlite3-migrate/issues"
},
"keywords": [
"sqlite",
"sql-migration",
"db-migration",
"cross-runtime",
"bun"
],
"engines": {
"node": ">=18",
"bun": ">=0.8"
},
"dependencies": {
"@farjs/better-sqlite3-wrapper": "^2.0.0"
},
"devDependencies": {
"@types/node": "^16.6.2",
"c8": "^7.13.0",
"mock-fn": "^1.1.0",
"prettier": "^2.8.8",
"quick-lint-js": "^3.0.0",
"typescript": "^4.9.5"
}
}