-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
70 lines (70 loc) · 2.13 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
61
62
63
64
65
66
67
68
69
70
{
"name": "appstore-discounts",
"version": "1.0.0",
"description": "An open-source App Store discounts tracker built on GitHub Actions, supporting RSS, Telegram and DingTalk notifications(开源的 App Store 折扣信息助手,基于 GitHub Actions 实现,支持 RSS、Telegram 和 钉钉 通知)",
"keywords": [],
"scripts": {
"prepare": "husky install",
"lint-code": "npx lint-staged",
"lint-msg": "npx commitlint --edit",
"docs": "jtm run",
"docs-i18n": "i18n t -P docs/src",
"build": "rimraf dist/src && rollup -c",
"rss": "tsx src/data/index.ts",
"rss-i18n": "npx i18n t -P src/data/i18n"
},
"author": "Eyelly Wu",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^17.8.1",
"@commitlint/config-conventional": "^17.8.1",
"@eyelly/prettier-config": "^1.0.0",
"@types/lodash": "^4.17.7",
"@types/node": "^20.14.11",
"@types/react": "^18.3.3",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"chalk": "^5.3.0",
"cheerio": "1.0.0-rc.12",
"dotenv": "^16.4.5",
"eslint": "^8.57.0",
"eslint-config-prettier": "^8.10.0",
"eslint-formatter-table": "^7.32.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.34.4",
"feed": "^4.2.2",
"https-proxy-agent": "^7.0.5",
"husky": "^8.0.3",
"jsx-to-md": "^0.11.5",
"lint-staged": "^13.3.0",
"node-fetch": "^3.3.2",
"p-limit": "^6.1.0",
"prettier": "^2.8.8",
"rimraf": "^5.0.9",
"rollup": "^2.79.1",
"rollup-plugin-prettier": "^3.1.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.34.1",
"tslib": "^2.6.3",
"tsx": "^4.16.2",
"typescript": "4.9.5"
},
"dependencies": {
"dayjs": "^1.11.11",
"i18n-pro": "2.1.1",
"lodash": "^4.17.21",
"react": "16.8.0",
"react-dom": "16.8.0"
},
"lint-staged": {
"*.{ts,tsx,js}": "eslint --fix -f table"
},
"homepage": "https://github.com/eyelly-wu/appstore-discounts",
"bugs": {
"url": "https://github.com/eyelly-wu/appstore-discounts/issues"
},
"codeNameMap": {
"en": "",
"zh": "zh-CN"
}
}