-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.65 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.65 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
{
"name": "brook-feed-reader",
"version": "0.5.1",
"description": "The Brook feed reader",
"main": "index.js",
"scripts": {
"dev": "vite build --watch",
"build": "NODE_ENV=production vite build",
"clean": "rm -rf ./node_modules; rm -rf ./dist",
"firefox": "web-ext run -s ./dist/ --url about:debugging#/runtime/this-firefox",
"lint": "eslint src test",
"test": "vitest",
"package": "yarn build && web-ext build -s extension/ && git archive --format=zip -o web-ext-artifacts/brook-src.zip master",
"postpackage": "cat ./docs/publishing.md"
},
"author": "Adam Sanderson",
"license": "MPL-2.0",
"devDependencies": {
"@babel/core": "^7.0.1",
"@babel/eslint-parser": "^7.28.4",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@vitejs/plugin-react": "^5.0.2",
"@vitest/ui": "^3.2.4",
"babel-core": "^7.0.0-0",
"eslint": "^9.35.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-react": "^7.6.1",
"eslint-plugin-react-hooks": "^5.2.0",
"jsdom": "^26.1.0",
"vite": "^7.1.5",
"vite-plugin-node-polyfills": "^0.24.0",
"vite-plugin-web-extension": "^4.4.5",
"vitest": "^3.2.4",
"web-ext": "8.9.0"
},
"dependencies": {
"@sentry/browser": "^4.5.1",
"feedme": "^2.0.2",
"lodash": "^4.17.5",
"prop-types": "^15.6.0",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"react-fast-compare": "^3.0.1",
"react-feather": "^2.0.3",
"react-redux": "^9.2.0",
"redux": "^5.0.1",
"redux-thunk": "^3.1.0",
"webext-redux": "^4.0.0"
},
"packageManager": "yarn@4.9.4"
}