-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.43 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.43 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
{
"name": "tgtg-notifier",
"description": "Monitors your favorite TGTG Store for newly available items",
"author": "Nyrrell",
"version": "1.4.2",
"type": "module",
"main": "src/app.js",
"license": "MIT",
"packageManager": "pnpm@10.33.2",
"scripts": {
"dev": "node --loader ts-node/esm src/app.ts",
"dev:watch": "node --watch --loader ts-node/esm src/app.ts",
"build": "tsc --build --clean && tsc",
"start": "node dist/app.js",
"format": "prettier --write ./src ./test",
"test": "NODE_OPTIONS=--experimental-vm-modules jest --config test/jest-config.json",
"test:watch": "npm run test -- --watch"
},
"keywords": [
"Too Good To Go",
"Notifier"
],
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^12.0.1",
"@semantic-release/npm": "^13.1.1",
"@types/jest": "^29.5.14",
"@types/node": "^22.13.10",
"jest": "^29.7.0",
"prettier": "3.5.3",
"semantic-release": "^25.0.1",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.8.2"
},
"dependencies": {
"@keyv/sqlite": "^4.0.1",
"class-validator": "^0.14.1",
"croner": "^9.0.0",
"got": "^15.0.0",
"keyv": "^5.3.1",
"winston": "^3.17.0",
"winston-daily-rotate-file": "^5.0.0"
},
"pnpm": {
"onlyBuiltDependencies": [
"sqlite3"
]
},
"engines": {
"node": ">=22.14.0"
}
}