-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 2.07 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
{
"name": "text-utils-browser-extension",
"version": "1.0.0",
"description": "Provides many utilities for quickly manipulating, transforming, and/or copying text",
"author": "Ryan Thaut <[email protected]> (https://ryan.thaut.me)",
"homepage": "https://github.com/rthaut/text-utils-browser-extension/",
"license": "GPL-3.0",
"private": true,
"scripts": {
"lint": "eslint ./app/",
"dev": "webextension-toolbox dev",
"build": "webextension-toolbox build",
"build:icons": "node scripts/generate-icons",
"start:chrome": "web-ext run --source-dir=./dist/chrome/ --target chromium",
"start:firefox": "web-ext run --source-dir=./dist/firefox/ --target firefox-desktop",
"start:firefox:nr": "npm run start:firefox -- --no-reload",
"test": "npm run lint && npm run test:firefox",
"test:firefox": "npm run build firefox && web-ext lint --source-dir=./dist/firefox/"
},
"repository": {
"type": "git",
"url": "git://https://github.com/rthaut/text-utils-browser-extension.git"
},
"bugs": {
"url": "https://github.com/rthaut/text-utils-browser-extension/issues"
},
"browserslist": [
"chrome >= 90",
"edge >= 91",
"firefox >= 78"
],
"dependencies": {
"@emotion/react": "^11.4.1",
"@emotion/styled": "^11.3.0",
"@mui/icons-material": "^5.0.0",
"@mui/lab": "^5.0.0-alpha.47",
"@mui/material": "^5.0.0",
"ap-style-title-case": "^1.1.2",
"base64util": "^2.1.0",
"debounce": "^1.2.1",
"esrever": "^0.2.0",
"react": "^17.0.2",
"react-beautiful-dnd": "^13.1.0",
"react-dom": "^17.0.2",
"sarcastify": "^1.0.5",
"slugify": "^1.6.0",
"text-case": "^1.0.9",
"use-chrome-storage": "^1.0.4",
"webextension-polyfill": "latest"
},
"devDependencies": {
"eslint": "latest",
"eslint-import-resolver-webpack": "^0.13.1",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-react": "^7.25.2",
"prettier": "latest",
"svg2png": "^4.1.1",
"web-ext": "latest",
"webextension-toolbox": "github:rthaut/webextension-toolbox#browserslist-string-vendor-version"
}
}