-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.76 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.76 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
{
"name": "custom-newtab-firefox",
"version": "0.1.0",
"description": "Customizable Semantic new tab extension",
"keywords": [
"new tab",
"firefox",
"semantic"
],
"homepage": "https://github.com/playhardgopro/semantic-new-tab#readme",
"bugs": {
"url": "https://github.com/playhardgopro/semantic-new-tab/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/playhardgopro/semantic-new-tab.git"
},
"license": "MIT",
"author": "Daniel Egortsev",
"main": "tsconfig.json",
"scripts": {
"build": "npm run clean && node ./scripts/build.js",
"clean": "rm -rf ./build",
"dev": "npx nodemon & npx web-ext run -s ./build",
"lint": "npm run build && npx web-ext lint -s ./build",
"try": "npm run build && npm run try:pre",
"try:pre": "npx web-ext run -s ./build",
"xpi": "npm run build && npx web-ext build -s ./build"
},
"dependencies": {
"core-js": "^3.34.0",
"esbuild": "^0.19.9",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"regenerator-runtime": "^0.14.1",
"semantic-ui-css": "^2.5.0",
"semantic-ui-react": "^2.1.5",
"typescript": "^5.3.3"
},
"devDependencies": {
"@babel/core": "^7.23.6",
"@babel/preset-env": "^7.23.6",
"@babel/preset-react": "^7.23.3",
"@babel/runtime": "^7.23.6",
"@types/firefox-webext-browser": "^120.0.0",
"@types/react": "^18.2.45",
"@types/react-dom": "^18.2.18",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-compat": "^4.2.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-unicorn": "^49.0.0",
"nodemon": "^3.0.2",
"prettier": "^3.1.1"
},
"title": "Semantic new tab for Firefox"
}