-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 1.25 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
{
"name": "limesguy",
"private": true,
"version": "0.0.1",
"description": "why cant i, hold all these",
"author": "s <https://github.com/lostfictions>",
"license": "AGPL-3.0",
"packageManager": "[email protected]",
"main": "dist/main.js",
"scripts": {
"start": "node --enable-source-maps dist/main.js",
"dev": "NODE_ENV=development ts-node -T src/main.ts -- local",
"build": "rm -rf dist/ && tsc",
"test": "run-p -cl test:*",
"test:ts": "tsc --pretty --noEmit",
"test:lint": "eslint --color 'src/**/*.{mjs,js,ts,jsx,tsx}' --max-warnings=0",
"test:prettier": "prettier 'src/**/*.{mjs,js,ts,jsx,tsx}' -l",
"prettier": "prettier 'src/**/*.{mjs,js,ts,jsx,tsx}' --write"
},
"dependencies": {
"@napi-rs/canvas": "^0.1.62",
"@sentry/integrations": "7.118.0",
"@sentry/node": "8.38.0",
"async-retry": "^1.3.3",
"axios": "^1.7.7",
"cheerio": "1.0.0",
"twoot": "0.4.0",
"znv": "^0.4.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/async-retry": "^1.4.9",
"@types/node": "^20.17.6",
"dotenv": "^16.4.5",
"eslint": "^8.57.1",
"eslint-config-lostfictions": "^6.1.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.3",
"ts-node": "^10.9.2",
"typescript": "^5.6.3"
}
}