-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.69 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.69 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
{
"name": "schummar-job",
"repository": "schummar/schummar-job",
"version": "0.8.1",
"description": "",
"type": "module",
"sideEffects": false,
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
"types": {
"import": "./dist/index.d.ts",
"require": "./dist/index.d.cts"
},
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"author": {
"name": "Marco Schumacher",
"email": "marco@schumacher.dev"
},
"license": "ISC",
"scripts": {
"build": "tsup src/index.ts --dts --format cjs,esm --sourcemap",
"build:clean": "rimraf dist/**",
"build:compile:esm": "tsc",
"build:compile:cjs": "tsc -p tsconfig-cjs.json && echo '{\"type\":\"commonjs\"}' > dist/cjs/package.json",
"lint": "runp lint:*",
"lint:oxlint": "oxlint src",
"lint:tsc": "tsc --noEmit",
"publint": "publint",
"test": "vitest run --coverage",
"test:watch": "vitest"
},
"keywords": [],
"devDependencies": {
"@nx/js": "^22.3.3",
"@schummar/runp": "2.2.4",
"@types/node": "25.0.9",
"@vitest/coverage-v8": "^4.0.17",
"cron-schedule": "6.0.0",
"fast-equals": "6.0.0",
"mongodb": "7.0.0",
"nanoid": "5.1.6",
"nx": "^22.3.3",
"oxlint": "^1.41.0",
"prettier": "3.8.0",
"publint": "^0.3.16",
"schummar-queue": "0.4.0",
"swc-node": "^1.0.0",
"tsup": "8.5.1",
"typescript": "5.9.3",
"vite": "^7.3.1",
"vitest": "^4.0.17"
},
"peerDependencies": {
"mongodb": ">=6.0.0"
},
"files": [
"dist"
],
"volta": {
"node": "24.11.1",
"pnpm": "10.25.0",
"npm": "11.7.0"
},
"dependencies": {
"node-object-hash": "^3.1.1"
}
}