-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.18 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
{
"name": "@kglw-dot-net/bot-bluesky-live",
"version": "1.0.1",
"description": "post a message on Bluesky whenever King Gizzard starts a new song",
"exports": "./dist/index.mjs",
"type": "module",
"scripts": {
"build": "funpack",
"lint": "tsc",
"postbuild": "echo okay now copy the index.js file, but not the package.json, and put it up into Lambda",
"postlint": "echo Lint succeeded",
"prebuild": "echo Building...",
"test": "vitest --run",
"test:watch": "vitest --watch"
},
"engines": {
"node": ">=20.18.0"
},
"keywords": [
"AWS Lambda",
"Bluesky",
"King Gizzard",
"KGLW"
],
"author": "KGLW.net",
"contributors": [
"Axe <[email protected]>"
],
"license": "TODO",
"private": true,
"dependencies": {
"@atproto/api": "^0.13.16",
"dotenv": "^16.4.5",
"process": "^0.11.10"
},
"devDependencies": {
"@types/node": "^22.9.0",
"esbuild": "^0.24.0",
"funpack": "^1.3.2",
"tsx": "^4.19.2",
"typescript": "^5.6.3",
"vitest": "^2.1.5",
"vitest-fetch-mock": "^0.4.2"
},
"funpack": {
"settings": {},
"functions": {
"handler": "./index.ts"
}
}
}