-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 1.07 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": "mastodon-piped-link-bot",
"version": "1.0.0",
"description": "",
"main": "src/index.ts",
"scripts": {
"start": "tsx src/index.ts",
"build": "esbuild src/index.ts --bundle --platform=node --packages=external --format=esm --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",
"type": "module",
"devDependencies": {
"@babel/core": "7.23.2",
"@babel/preset-env": "7.23.2",
"@babel/preset-typescript": "7.23.2",
"@types/jest": "29.5.6",
"@types/jsdom": "21.1.4",
"@types/node": "20.8.9",
"@typescript-eslint/eslint-plugin": "6.9.0",
"@typescript-eslint/parser": "6.9.0",
"babel-jest": "29.7.0",
"esbuild": "0.19.5",
"eslint": "8.52.0",
"eslint-config-prettier": "9.0.0",
"jest": "29.7.0",
"prettier": "3.0.3",
"tsx": "3.14.0",
"typescript": "5.2.2"
},
"dependencies": {
"jsdom": "22.1.0",
"masto": "6.3.3"
}
}