-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.87 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.87 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
78
79
80
{
"name": "uwwave_extension_lib",
"version": "1.3.3",
"description": "API for reading and writing from the UW Wave browser extension",
"repository": {
"type": "git",
"url": "https://github.com/uwwave/extension.git"
},
"author": "UW Wave",
"license": "GPL-3.0",
"files": [
"dist_lib/*",
"README.md",
"LICENSE.txt"
],
"main": "./dist_lib/index.js",
"exports": "./dist_lib/index.js",
"types": "./dist_lib/index.d.ts",
"targets": {
"main": false,
"types": false
},
"homepage": "https://uwwave.ca",
"scripts": {
"clean": "rm -rf dist/* dist_firefox/* dist_lib/* .parcel-cache",
"start": "yarn clean && parcel watch src/manifest.json --host localhost",
"build": "yarn clean && yarn build:chrome && yarn build:firefox && yarn build:lib",
"build:chrome": "parcel build src/manifest.json",
"build:firefox": "mkdir -p dist_firefox && cp -r dist/* dist_firefox && node exportToFirefox.mjs",
"build:lib": "yarn tsc --build tsconfig.lib.json",
"publish:lib": "no-dependencies --exec 'yarn publish'",
"test": "jest --passWithNoTests",
"test:coverage": "jest --coverage --watchAll=false --passWithNoTests",
"test:watch": "jest --watch --passWithNoTests",
"lint": "eslint --fix -c ./.eslintrc.json \"src/**/*.ts*\" && prettier --write \"src/**/*.ts*\""
},
"devDependencies": {
"@babel/core": "^7.20.12",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.18.6",
"@parcel/config-webextension": "^2.8.3",
"@types/chrome": "^0.0.216",
"@types/jest": "^29.4.0",
"@types/react-dom": "^18.2.7",
"@types/webextension-polyfill": "^0.10.0",
"@typescript-eslint/eslint-plugin": "^5.52.0",
"@typescript-eslint/parser": "^5.52.0",
"babel-jest": "^29.4.3",
"buffer": "^5.5.0",
"eslint": "^8.34.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-unused-imports": "^3.0.0",
"jest": "^29.4.3",
"no-dependencies": "^1.3.1",
"parcel": "^2.8.3",
"prettier": "^2.8.4",
"process": "^0.11.10",
"ts-node": "^10.9.1",
"typescript": "^5.3.3",
"webextension-polyfill": "^0.10.0"
},
"dependencies": {
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@mui/icons-material": "^5.14.3",
"@mui/material": "^5.14.5",
"@types/jquery": "^3.5.16",
"@types/json5": "^2.2.0",
"@types/tiny-async-pool": "^2.0.0",
"axios": "^1.3.4",
"axios-retry": "^3.4.0",
"jquery": "^3.6.4",
"json5": "^2.2.3",
"moment": "^2.29.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"styled-components": "^6.0.7",
"tiny-async-pool": "^2.1.0"
}
}