rentgen/package.json

37 lines
1.1 KiB
JSON
Raw Normal View History

2021-10-03 09:03:56 +02:00
{
2022-01-28 12:46:34 +01:00
"name": "rentgen",
2022-01-28 11:36:36 +01:00
"version": "0.0.1",
2022-01-28 13:24:59 +01:00
"description": "A simple Firefox extension that visualizes all the data that a given website sends to third parties.",
"main": "esbuild.config.js",
"type": "module",
2021-10-03 09:03:56 +02:00
"scripts": {
"build": "node esbuild.config.js",
2022-01-28 11:33:44 +01:00
"watch": "node esbuild.config.js --watch",
2021-11-22 18:56:20 +01:00
"typecheck": "tsc --noEmit"
2021-10-03 09:03:56 +02:00
},
"repository": {
"type": "git",
2022-01-28 12:46:34 +01:00
"url": "https://git.internet-czas-dzialac.pl/icd/rentgen.git"
2021-10-03 09:03:56 +02:00
},
"homepage": "https://git.internet-czas-dzialac.pl/icd/rentgen",
"author": "Kuba Orlik, Arkadiusz Wieczorek",
2022-01-28 13:24:59 +01:00
"license": "GPL-3.0-or-later",
2021-10-03 09:03:56 +02:00
"dependencies": {
"@iabtcf/core": "^1.3.1",
"@types/proposal-relative-indexing-method": "^0.1.0",
2021-10-03 09:03:56 +02:00
"esbuild": "^0.13.3",
"events": "^3.3.0",
"react": "^17.0.2",
2021-10-04 18:51:51 +02:00
"react-dom": "^17.0.2",
"tai-password-strength": "^1.1.3"
2021-10-03 09:03:56 +02:00
},
"devDependencies": {
"@types/events": "^3.0.0",
"@types/react-dom": "^17.0.9",
"esbuild-plugin-sass": "^1.0.1",
"esbuild-plugin-svgr": "^1.0.0",
2022-01-28 13:24:59 +01:00
"web-ext": "^6.6.0",
2021-10-03 09:03:56 +02:00
"web-ext-types": "^3.2.1"
}
}