-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.07 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 2.07 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "sqlite-up",
"author": "Sandrino Di Mattia",
"version": "0.6.0",
"description": "A lightweight SQLite migration system for Node.js and Bun",
"type": "module",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/sandrinodimattia/sqlite-up.git"
},
"bugs": {
"url": "https://github.com/sandrinodimattia/sqlite-up/issues"
},
"homepage": "https://github.com/sandrinodimattia/sqlite-up#readme",
"engines": {
"node": ">=24.0.0"
},
"packageManager": "pnpm@10.30.3",
"publishConfig": {
"access": "public"
},
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist",
"LICENSE",
"README.md"
],
"scripts": {
"build": "tsup src/index.ts --format esm --sourcemap && tsc -p tsconfig.build.json",
"check": "biome check .",
"check:fix": "biome check --write --unsafe .",
"format": "biome format --write .",
"lint": "biome lint . && jsdoc-lint src",
"typecheck": "pnpm typecheck:src && pnpm typecheck:test",
"typecheck:src": "tsc --noEmit",
"typecheck:test": "tsc --noEmit -p tsconfig.test.json",
"test": "vitest run",
"test:bun": "bun test ./src/*.bun.test.ts ./src/providers/*.bun.test.ts",
"test:coverage": "vitest run --coverage",
"test:node": "vitest run",
"test:watch": "vitest",
"prepare": "husky install",
"release": "node scripts/release.mjs",
"prepublishOnly": "pnpm run build"
},
"keywords": [
"bun",
"database",
"migrations",
"node",
"sqlite",
"typescript"
],
"devDependencies": {
"@biomejs/biome": "^2.4.13",
"@types/better-sqlite3": "^7.6.13",
"@types/bun": "^1.3.13",
"@types/node": "^25.6.0",
"@vitest/coverage-v8": "^4.1.5",
"better-sqlite3": "^12.9.0",
"husky": "^9.1.7",
"jsdoc-lint": "0.4.0",
"lint-staged": "^16.4.0",
"tsup": "^8.5.1",
"tsx": "^4.21.0",
"typescript": "^6.0.3",
"vitest": "^4.1.5"
}
}