-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.76 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
{
"name": "browser-activity",
"version": "1.0.0",
"description": "Chrome extension to publish browser activity to Discord's Rich Presence",
"homepage": "https://p00ya.github.io/browser-activity",
"repository": "github:p00ya/browser-activity",
"author": "Dean Scarff https://github.com/p00ya",
"license": "MPL-2.0",
"devDependencies": {
"@types/chrome": "^0.0.184",
"@types/jest": "^27.4.0",
"@types/jsdom": "^16.2.14",
"@typescript-eslint/eslint-plugin": "^5.10.2",
"@typescript-eslint/parser": "^5.10.2",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^10.2.4",
"eslint": "^8.8.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsonc": "^2.1.0",
"fork-ts-checker-webpack-plugin": "^7.2.1",
"jest": "^28.1.0",
"jest-environment-jsdom": "^28.1.0",
"jest-environment-jsdom-global": "^3.0.0",
"jest-mock-extended": "^2.0.4",
"jsdom": "^19.0.0",
"nodemon": "^2.0.15",
"terser-webpack-plugin": "^5.3.1",
"ts-jest": "^28.0.2",
"ts-loader": "^9.2.6",
"typescript": "^4.5.5",
"webpack": "^5.68.0",
"webpack-cli": "^4.9.2",
"webpack-merge": "^5.8.0"
},
"scripts": {
"start": "webpack --watch --config webpack.dev.js",
"build": "webpack --config webpack.prod.js",
"lint": "eslint .",
"start-lint": "nodemon --watch src --ext js,ts --exec 'eslint src'",
"svg2png": "cd src/img ; inkscape -o icon-128.png -C icon-large.svg ; inkscape -d 36 -o icon-48.png -C icon-small.svg ; inkscape -d 24 -o icon-32.png -C icon-small.svg",
"test": "jest",
"prerelease": "webpack --config webpack.prod.js",
"release": "cd dist && zip -o ../browser-activity.zip *"
}
}