-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.21 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
{
"name": "zutomayo-rss",
"homepage": "https://github.com/ohakutsu/zutomayo-rss",
"license": "MIT",
"author": {
"name": "ohakutsu",
"url": "https://twitter.com/ohakutsu"
},
"repository": {
"type": "git",
"url": "https://github.com/ohakutsu/zutomayo-rss.git"
},
"scripts": {
"build": "tsc --build",
"clean": "tsc --build --clean",
"generate": "mkdir -p feed && node dist/main.mjs",
"lint:fix": "pnpm run prettier:fix",
"lint": "concurrently -n 'prettier,typecheck' 'pnpm run prettier:check' 'pnpm run typecheck'",
"prettier:check": "prettier --check .",
"prettier:fix": "prettier --write --cache .",
"test": "pnpm run build && node --test",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"feed": "^4.2.2",
"jsdom": "^25.0.1",
"node-fetch": "^3.3.2"
},
"devDependencies": {
"@types/jsdom": "^21.1.7",
"@types/node": "^20.17.17",
"concurrently": "^9.1.2",
"esmock": "^2.7.0",
"prettier": "^3.5.1",
"typescript": "^5.7.3"
},
"engines": {
"node": "20.18.2",
"pnpm": "9.15.5"
},
"packageManager": "[email protected]",
"private": true,
"pnpm": {
"overrides": {
"ws@>=8.0.0 <8.17.1": ">=8.18.0"
}
}
}