-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.04 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "philo-philm",
"version": "2.0.0",
"description": "Photo & Timelapse Bot",
"main": "dist/main.js",
"type": "module",
"scripts": {
"start": "tsx --env-file=.env src/main.ts",
"command": "tsx --env-file=.env src/commands/index.ts",
"production": "npm run build && npm run run-built",
"run-built": "node --env-file=.env dist/main.js",
"lint": "oxlint",
"build": "tsc -b",
"clean-build": "tsc -b --clean",
"watch": "tsx watch --env-file=.env src/main.ts",
"test": "vitest",
"testm": "tsx --env-file=.env src/test.ts",
"test-sunmoon": "tsx --env-file=.env src/services/SunMoonTime.ts",
"test-df": "tsx watch src/lib/df.ts",
"download-backup": "tsx --env-file=.env src/downloadBackups.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Phoscur/philo.git"
},
"keywords": [
"photo",
"raspberry-pi",
"telegram",
"telegraf",
"bot",
"timelapse"
],
"author": "Phoscur",
"license": "AGPL-3.0-or-later",
"bugs": {
"url": "https://github.com/Phoscur/philo/issues"
},
"homepage": "https://github.com/Phoscur/philo#readme",
"dependencies": {
"@aws-sdk/client-glacier": "^3.637.0",
"@joist/di": "^3.9.2",
"@octokit/rest": "^21.0.2",
"archiver": "^7.0.1",
"axios": "^1.7.5",
"discord.js": "^14.16.1",
"isomorphic-git": "^1.27.1",
"libsodium-wrappers": "^0.7.15",
"suncalc": "^1.9.0",
"telegraf": "^4.16.3"
},
"optionalDependencies": {
"node-dht-sensor": "^0.4.3"
},
"devDependencies": {
"@types/archiver": "^6.0.2",
"@types/libsodium-wrappers": "^0.7.14",
"@types/node": "^22.5.1",
"@types/node-dht-sensor": "^0.4.2",
"@types/suncalc": "^1.9.2",
"@types/tar-stream": "^3.1.3",
"oxlint": "^0.10.3",
"tsx": "^4.19.0",
"typescript": "^5.5.4",
"vitest": "^2.1.2"
},
"overrides": {
"telegraf": {
"node-fetch": {
"whatwg-url": "^14.0.0"
}
}
},
"lint-staged": {
"**/*.{js,mjs,cjs,jsx,ts,mts,cts,tsx,vue,astro,svelte}": "oxlint"
}
}