This repository has been archived by the owner on Apr 23, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.49 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
56
57
58
59
60
{
"name": "rsshub-launcher",
"version": "0.2.1",
"description": "Launch rsshub",
"main": "dist/index.js",
"bin": "dist/index.js",
"type": "module",
"files": [
"dist/**/*",
"!*.d.ts"
],
"dependencies": {
"@types/yargs": "^17.0.2",
"acorn": "^8.4.1",
"acorn-walk": "^8.1.1",
"consola": "^2.15.3",
"got": "^11.8.2",
"jest": "^27.0.6",
"js-yaml": "^4.1.0",
"parse-diff": "^0.8.1",
"yargs": "^17.0.1"
},
"devDependencies": {
"prettier": "^2.3.2",
"typescript": "^4.3.5",
"@sindresorhus/tsconfig": "^1.0.2",
"@types/jest": "^26.0.24",
"@types/js-yaml": "^4.0.2",
"@types/node": "^16.3.2",
"@typescript-eslint/eslint-plugin": "^4.28.3",
"@typescript-eslint/parser": "^4.28.3",
"esbuild": "^0.12.15",
"esbuild-jest": "^0.5.0",
"eslint": "^7.30.0",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-plugin-import": "^2.23.4",
"jest-ts-webcompat-resolver": "^1.0.0"
},
"scripts": {
"prepublishOnly": "npm run lint && npx tsc",
"build": "npx tsc",
"test": "npx jest",
"lint": "npx eslint --ext .js,.ts --fix .",
"format": "npx prettier -w ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/fengkx/rsshub-launcher.git"
},
"keywords": [
"rss",
"RSSHub"
],
"author": "fengkx",
"license": "MIT",
"bugs": {
"url": "https://github.com/fengkx/rsshub-launcher/issues"
},
"homepage": "https://github.com/fengkx/rsshub-launcher#readme"
}