-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
39 lines (39 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
{
"name": "lemmy-piped-link-bot",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "tsx src/index.ts",
"build": "esbuild src/index.ts --bundle --platform=node --packages=external --outfile=dist/index.js",
"format": "prettier src --write && eslint src/**/*.ts --fix",
"lint": "prettier src --check && eslint src/**/*.ts",
"test": "jest"
},
"keywords": [],
"author": "",
"license": "agpl-3.0",
"devDependencies": {
"@babel/core": "7.26.0",
"@babel/preset-env": "7.26.0",
"@babel/preset-typescript": "7.26.0",
"@types/jest": "29.5.14",
"@types/jsdom": "21.1.7",
"@types/node": "20.17.14",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"babel-jest": "29.7.0",
"esbuild": "0.24.2",
"eslint": "8.57.1",
"eslint-config-prettier": "9.1.0",
"jest": "29.7.0",
"prettier": "3.4.2",
"tsx": "4.19.2",
"typescript": "5.7.3"
},
"dependencies": {
"jsdom": "24.1.3",
"lemmy-bot": "0.5.2",
"marked": "12.0.2"
}
}