-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.47 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
55
56
57
58
59
{
"name": "@geprog/node-migrate-ts",
"version": "0.0.0-semantic-release",
"description": "Abstract migration framework using TypeScript",
"homepage": "https://geprog.com",
"repository": "github:geprog/node-migrate-ts",
"license": "MIT",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js",
"types": "./dist/index.d.mts"
}
},
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"/dist"
],
"scripts": {
"build": "tsup src/index.ts --dts --format cjs,esm",
"clean": "rm -rf dist/ node_modules/",
"lint": "eslint --max-warnings 0 .",
"lint:format": "prettier --check .",
"start": "pnpm run build --watch",
"test": "vitest run --coverage",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"release": "semantic-release"
},
"devDependencies": {
"@geprog/eslint-config": "^2.1.1",
"@geprog/semantic-release-config": "^2.0.0",
"@types/node": "^20.12.7",
"@vitest/coverage-v8": "^1.5.0",
"eslint": "^8.57.0",
"mongodb": "^6.5.0",
"prettier": "^3.2.5",
"semantic-release": "^20.1.0",
"tsup": "^8.0.2",
"typescript": "^4.9.5",
"vitest": "^1.5.0"
},
"peerDependencies": {
"mongodb": "^3.6.0 || ^4.0.0 || ^5.0.0 || ^6.0.0"
},
"peerDependenciesMeta": {
"mongodb": {
"optional": true
}
},
"engines": {
"pnpm": "8"
},
"publishConfig": {
"access": "public"
}
}