-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
70 lines (70 loc) · 1.87 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": "feeds-fetcher",
"version": "2.6.0",
"description": "Websites feed fetcher and static feeds aggregator",
"main": "index.js",
"author": "Maythee Anegboonlap <[email protected]>",
"repository": "github:llun/feeds",
"license": "ISC",
"scripts": {
"dev": "next dev",
"build": "next build && next export",
"start": "next start",
"load": "INPUT_OPMLFILE='feeds.opml' node -r @swc-node/register index.ts",
"loadFile": "INPUT_OPMLFILE='feeds.opml' INPUT_STORAGETYPE='files' node -r @swc-node/register index.ts",
"test": "ava"
},
"ava": {
"extensions": [
"ts",
"tsx",
"js"
],
"failWithoutAssertions": false,
"require": [
"@swc-node/register"
]
},
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/github": "^6.0.0",
"@octokit/rest": "^21.0.2",
"@tailwindcss/typography": "^0.5.15",
"@vscode/sqlite3": "^5.1.2",
"autoprefixer": "^10.4.20",
"ava": "^5.3.1",
"date-fns": "^4.1.0",
"history": "^5.3.0",
"html-minifier": "^4.0.0",
"html-react-parser": "^5.1.18",
"jsdom": "^25.0.1",
"knex": "^3.1.0",
"lodash": "^4.17.21",
"next": "^15.0.3",
"node-fetch": "3",
"postcss": "^8.4.48",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"sanitize-html": "^2.13.1",
"sql.js-httpvfs": "^0.8.12",
"sqlite3": "^5.1.7",
"tailwindcss": "^3.4.14",
"tailwindcss-cli": "^0.1.2",
"xml2js": "^0.6.2"
},
"devDependencies": {
"@swc-node/core": "^1.13.0",
"@swc-node/register": "^1.10.9",
"@swc/core": "^1.9.2",
"@types/html-minifier": "^4.0.5",
"@types/jsdom": "^21.1.7",
"@types/node": "^22.9.0",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@types/sanitize-html": "^2.13.0",
"@types/sinon": "^17.0.3",
"@types/xml2js": "^0.4.14",
"sinon": "^19.0.2",
"typescript": "^5.6.3"
}
}