-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.01 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 2.01 KB
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
71
72
73
74
75
76
77
{
"name": "feeds-fetcher",
"version": "4.0.6",
"description": "Websites feed fetcher and static feeds aggregator",
"main": "index.js",
"type": "module",
"author": "Maythee Anegboonlap <null@llun.dev>",
"repository": "github:llun/feeds",
"license": "ISC",
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"load": "INPUT_OPMLFILE='feeds.opml' node --import tsx index.ts",
"loadFile": "INPUT_OPMLFILE='feeds.opml' INPUT_STORAGETYPE='files' node --import tsx index.ts",
"test": "ava"
},
"ava": {
"extensions": [
"ts",
"tsx",
"js"
],
"failWithoutAssertions": false,
"nodeArguments": [
"--import=tsx"
],
"workerThreads": false
},
"dependencies": {
"@actions/core": "^3.0.1",
"@actions/github": "^9.1.1",
"@octokit/rest": "^22.0.1",
"@tailwindcss/postcss": "^4.3.0",
"@tailwindcss/typography": "^0.5.19",
"@vscode/sqlite3": "^5.1.12-vscode",
"autoprefixer": "^10.5.0",
"date-fns": "^4.4.0",
"history": "^5.3.0",
"html-react-parser": "^6.1.2",
"knex": "^3.2.10",
"lucide-react": "^1.16.0",
"next": "^16.2.7",
"next-themes": "^0.4.6",
"node-fetch": "^3.3.2",
"postcss": "^8.5.15",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"sanitize-html": "^2.17.4",
"shadcn": "^4.10.0",
"sql.js-httpvfs": "^0.8.12",
"sqlite3": "^6.0.1",
"tailwindcss": "^4.3.0",
"tailwindcss-cli": "^0.1.2",
"tsx": "^4.22.4",
"tw-animate-css": "^1.4.0",
"xml2js": "^0.6.2"
},
"devDependencies": {
"@types/node": "^25.9.1",
"@types/react": "^19.2.16",
"@types/react-dom": "^19.2.3",
"@types/sanitize-html": "^2.16.1",
"@types/sinon": "^21.0.1",
"@types/xml2js": "^0.4.14",
"ava": "^8.0.1",
"prettier": "^3.8.3",
"sinon": "^22.0.0",
"typescript": "^6.0.3"
},
"resolutions": {
"glob": "^10.5.0",
"js-yaml": "^4.1.1",
"postcss@npm:8.4.31": "npm:8.5.14"
},
"packageManager": "yarn@4.14.1"
}