-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.3 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
{
"name": "music-release-notifier",
"version": "0.0.1",
"author": "Lauren Yim (https://github.com/cherryblossom000)",
"private": true,
"publishConfig": {
"access": "restricted"
},
"license": "MIT",
"engines": {
"node": ">=18"
},
"type": "module",
"main": "dist",
"bin": {
"music-release-notifier": "dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"watch": "dum build -- -w",
"lint": "eslint --max-warnings 0 --ext cjs,ts .",
"lint:dev": "dum lint -- --cache"
},
"dependencies": {
"dotenv": "^16.3.1",
"escape-html": "^1.0.3",
"js-yaml": "^4.1.0",
"nodemailer": "^6.9.4",
"undici": "^5.23.0",
"zod": "^3.21.4"
},
"devDependencies": {
"@cherryblossom/eslint-config": "20.0.0",
"@types/escape-html": "^1.0.2",
"@types/eslint": "^8.44.2",
"@types/js-yaml": "^4.0.5",
"@types/node": "^18.17.3",
"@types/nodemailer": "^6.4.9",
"@typescript-eslint/eslint-plugin": "^6.2.1",
"@typescript-eslint/parser": "^6.2.1",
"esbuild": "^0.18.19",
"eslint": "^8.46.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-unicorn": "^48.0.1",
"prettier": "^3.0.1",
"typescript": "~5.1.6"
}
}